$this->data在 cakephp 2.1和之间有什么区别$this->request->data?
4921 次
1 回答
10
$this->data一直使用到 cakephp 1.3
$this->request->data$this->data从 cakephp 2.x 开始替换了数组。
为了向后兼容$this->data,也仍然支持。
$this->request表示CakeRequest对象,可在 和Controller中Views访问Helpers。
欲了解更多信息:http ://book.cakephp.org/2.0/en/controllers/request-response.html
于 2012-04-16T09:06:35.880 回答