最近升级了webman,访问后台时发现布局乱了,调试发现是tpl_replace_string不起作用了 app/config/view配置如下,请问是咋回事?Workerman version:4.0.36 PHP version:7.4.3 workerman/webman-framework: "^1.3"
其它配置选项通过options传入 https://www.workerman.net/doc/webman/view.html#%E5%AE%89%E8%A3%85think-template
我试过用'options' => [ 'tpl_replace_string' => [ '__STATIC__' => '/public/static', ], ] 和'options' => [ '__STATIC__' => '/public/static', ] 还是不行
模版部分好像没有做过什么改动
解决了,'tpl_cache' => false也要写在options里
其它配置选项通过options传入
https://www.workerman.net/doc/webman/view.html#%E5%AE%89%E8%A3%85think-template
我试过用'options' => [
'tpl_replace_string' => [
'__STATIC__' => '/public/static',
],
]
和'options' => [
'__STATIC__' => '/public/static',
]
还是不行
模版部分好像没有做过什么改动
解决了,'tpl_cache' => false也要写在options里