base.php
<?php
namespace app\index\controller;
use think\Controller;class Base extends Controller;
{
}
index.php
<?php
namespace app\index\controller;
use app\index\controller\Base;class Index extends Base
{
public function index()
{
return $this -> view -> fetch();
}
}
还没到模板分离这一步就出错了,提示:
页面错误,请稍后再试~
可以在配置文件config.php 把 app_debug和app_trace的false 改为 true 即可清楚的看到报错内容
你这库的fetch()没有指出那个视图啊!