ThinkPHP 5.0.x
最后更新于:2022-04-01 11:04:28
## 安装方法
### tp5.0.x版本
<code>composer require topthink/think-angular:1.0.*</code>
### 模板配置
```
// 修改模板配置: /application/config.php
'template' => [
// 模板引擎类型 Angular
'type' => 'Angular',
'debug' => true, // 是否开启调试模式
'tpl_suffix' => '.html', // 模板后缀
'tpl_cache_suffix' => '.php', // 模板缓存文件后缀
'directive_prefix' => 'php-', // 指令前缀
'directive_max' => 10000, // 指令的最大解析次数
],
```
> 注意, 只有开启调试模式, 修改模板才能实时看到效果, 线上修改模板后, 一定要清理一次模板缓存, 否则会导致模板不生效