请问下
return $this->view('aa.bb.cc.htview', $viewData);
路径是从模块目录开始吗
主题的视图文件( .blade.php 结尾)可能出现在多个位置,系统在渲染视图的时候会按照以下优先级查找直到匹配成功:
.blade.php
启用主题自定义视图目录:如 resources/views/theme/<主题>
resources/views/theme/<主题>
当前主题主题模块视图目录:如 module/<主题模块>/View(这里假设主题模块的主题根目录为 module/<主题模块>/View )
module/<主题模块>/View
系统默认视图目录:如 resources/views/theme/default
resources/views/theme/default
当前模块视图目录:如 module/Xxx/View
module/Xxx/View
举例说明: 当前系统启用 myTest 主题模块,主题根目录位于 module/MyTest/View,在 Xxx 模块中调用 $this->view('test.list.news') 系统会按照如下顺序进行视图文件的查找,优先使用第一个匹配到的文件:resources/views/theme/myTest/pc/test/list/news.blade.phpmodule/MyTest/View/test/list/news.blade.phpresources/views/theme/default/pc/test/list/news.blade.phpmodule/Xxx/View/pc/test/list/news.blade.php
举例说明: 当前系统启用 myTest 主题模块,主题根目录位于 module/MyTest/View,在 Xxx 模块中调用 $this->view('test.list.news') 系统会按照如下顺序进行视图文件的查找,优先使用第一个匹配到的文件:
module/MyTest/View
$this->view('test.list.news')
resources/views/theme/myTest/pc/test/list/news.blade.php
module/MyTest/View/test/list/news.blade.php
resources/views/theme/default/pc/test/list/news.blade.php
module/Xxx/View/pc/test/list/news.blade.php
具体可参照 https://modstart.com/doc/manual/module_theme.html
QQ扫一扫联系
点击联系
2374926113
微信扫一扫联系
主题的视图文件(
.blade.php
结尾)可能出现在多个位置,系统在渲染视图的时候会按照以下优先级查找直到匹配成功:启用主题自定义视图目录:如
resources/views/theme/<主题>
当前主题主题模块视图目录:如
module/<主题模块>/View
(这里假设主题模块的主题根目录为module/<主题模块>/View
)系统默认视图目录:如
resources/views/theme/default
当前模块视图目录:如
module/Xxx/View
具体可参照 https://modstart.com/doc/manual/module_theme.html