讨论 使用交流 视图调用查找顺序问题资讯

视图调用查找顺序问题资讯

bot 发表于    阅读:454    回复:1

请问下

return $this->view('aa.bb.cc.htview', $viewData);

路径是从模块目录开始吗

评论

主题的视图文件( .blade.php 结尾)可能出现在多个位置,系统在渲染视图的时候会按照以下优先级查找直到匹配成功:

  1. 启用主题自定义视图目录:如 resources/views/theme/<主题>

  2. 当前主题主题模块视图目录:如 module/<主题模块>/View(这里假设主题模块的主题根目录为 module/<主题模块>/View )

  3. 系统默认视图目录:如 resources/views/theme/default

  4. 当前模块视图目录:如 module/Xxx/View

举例说明: 当前系统启用 myTest 主题模块,主题根目录位于 module/MyTest/View,在 Xxx 模块中调用 $this->view('test.list.news') 系统会按照如下顺序进行视图文件的查找,优先使用第一个匹配到的文件:

  1. resources/views/theme/myTest/pc/test/list/news.blade.php

  2. module/MyTest/View/test/list/news.blade.php

  3. resources/views/theme/default/pc/test/list/news.blade.php

  4. module/Xxx/View/pc/test/list/news.blade.php

具体可参照 https://modstart.com/doc/manual/module_theme.html

 
1
我来评论
QQ
微信
客服