duanhan5388 2013-10-13 23:31
浏览 56
已采纳

$ this-> params在cakephp模型中返回null

I decided to add some extra data about the controllers and actions in some model beforeSave as follows:

//in the model
public function beforeSave() {
        $this->data[$this->alias]['path'] = 'blah blan';
        debug($this->params);
        die(); //for debugging!
}

The printout of debug returns null! The model I uses is the Comment model of the comments plugin. I need to access params to get the current controller, actions and some url parameters.

Indeed, I plan to change the way that comments plugin lists the comments from model based to be path based to solve the issue of need comments for more than one action depend on the same model.

  • 写回答

1条回答 默认 最新

  • dsw8292301 2013-10-14 01:07
    关注

    Finally I found the solution: It is in Router object method getParams();

    //in the model
    public function beforeSave() {
            $this->data[$this->alias]['path'] = 'blah blan';
            debug(Router::getParams());
            die(); //for debugging!
    }
    

    it prints out something like:

    array(
        'plugin' => null,
        'controller' => 'qurans',
        'action' => 'view',
        'named' => array(
            'comment' => '0'
        ),
        'pass' => array(
            (int) 0 => '8'
        )
    )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应