index.html渲染不了

浏览:315 发布日期:2020/03/04 分类:ThinkPHP5专区
情况一:
namespace app\admin\controller;
use think\Controller;
use think\Request;

class Index extends Controller
{
public function index(){

return "这里是index页面";
}
}

情况二:
namespace app\admin\controller;
use think\Controller;
use think\Request;

class Index extends Controller
{
public function index(){

return $this->fetch();
}
}

情况一可以正常显示;情况二提示错误,请问大师是什么原因
最佳答案
评论( 相关
后面还有条评论,点击查看>>