间接修改重载属性 - cakephp

时间:2012-05-08 08:46:52

标签: php jquery ajax cakephp

我在ajax表单验证期间遇到此错误。

Notice (8): Indirect modification of overloaded property CommentsController::$data has no    effect [APP\Controller\CommentsController.php, line 78]

错误中指出的具体行是:

$this->data['Comment'][$this->params['form']['field']] = $this->params['form']['value'];

我的cakephp版本是2.1

他们说它在1.3工作但是我将使用什么具体代码作为替代品使其与2.1兼容?

1 个答案:

答案 0 :(得分:11)

$this->request->data

你应该read the Migration guide


从Cake3.4开始就是

$this->request->getData()

请参阅the related migration指南3.4:)