2

我在 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 兼容?

4

1 回答 1

11

这是

$this->request->data

您应该阅读迁移指南


从Cake3.4开始就是

$this->request->getData()

请参阅3.4的相关迁移指南 :)

于 2012-05-08T08:52:51.660 回答