元素视图在 CakePHP 的控制器中不起作用 4.x
Element view not working in controller in CakePHP 4.x
与在 CakePHP 3.x 上一样,$this->view
在控制器中正常工作。
迁移到CakePHP4.x版本后,好像不行了。在 CakeBook 4.x.
下找不到任何文档
对于 $this->view
,CakePHP 4.x 中的语法是否有任何更改,或者它在较新版本中已被弃用??
从 CakePHP 3.1 开始,控制器 $view
属性 已弃用。
https://book.cakephp.org/3/en/appendices/3-1-migration-guide.html#controller
view - replaced with template
在 CakePHP 中 4.x 使用 $this->viewBuilder() 来设置和获取视图选项:
https://book.cakephp.org/4/en/controllers.html#setting-view-options
https://book.cakephp.org/4/en/search.html?check_keywords=yes&area=default&q=viewBuilder
与在 CakePHP 3.x 上一样,$this->view
在控制器中正常工作。
迁移到CakePHP4.x版本后,好像不行了。在 CakeBook 4.x.
下找不到任何文档对于 $this->view
,CakePHP 4.x 中的语法是否有任何更改,或者它在较新版本中已被弃用??
从 CakePHP 3.1 开始,控制器 $view
属性 已弃用。
https://book.cakephp.org/3/en/appendices/3-1-migration-guide.html#controller
view - replaced with template
在 CakePHP 中 4.x 使用 $this->viewBuilder() 来设置和获取视图选项:
https://book.cakephp.org/4/en/controllers.html#setting-view-options https://book.cakephp.org/4/en/search.html?check_keywords=yes&area=default&q=viewBuilder