【发布时间】:2012-04-15 17:09:15
【问题描述】:
在 cakephp 2.1 中,$this->data 和 $this->request->data 有什么区别?
【问题讨论】:
标签: cakephp-2.1
在 cakephp 2.1 中,$this->data 和 $this->request->data 有什么区别?
【问题讨论】:
标签: cakephp-2.1
$this->data 一直使用到 cakephp 1.3
$this->request->data 从 cakephp 2.x 开始替换了 $this->data 数组。
为了向后兼容,$this->data 也仍然受支持。
$this->request 代表CakeRequest 对象,可在Controller、Views 和Helpers 中访问。
欲了解更多信息:http://book.cakephp.org/2.0/en/controllers/request-response.html
【讨论】: