一.输出替换
模板输出替换:支持对视图输出的内容进行字符替换
如果需要全局替换的话,可以直接在配置文件中添加:
'view_replace_str' => [
'__PUBLIC__'=>'/public/',
'__ROOT__' => '/',
]
在D:\www\youme\application
文件夹下的config.php
添加如下代码:
//输出替换
'view_replace_str' => [
'__PUBLIC__'=>'/youme/public/',
'__ROOT__' => '/',
]
以进行输出替换
二.引入前台模板
模板渲染流程:
1.在D:\www\youme\application\index\controller
文件夹下,修改index.php文件内容
<?php
namespace app\index\controller;
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch('index');
}
}
2.在D:\www\youme\application\index\controller
文件夹下,新建view\Index
,以进行导入模板的操作
3.导入index.html
4.Ctrl+H替换
./style
为__PUBLIC__/static/index/style
为./images
为__PUBLIC__/static/index/images
导入静态文件:
三.引入后台模板
引入后台模板与引入前台模板操作基本,相同,故不再赘述.