thinkphp5 模板渲染 在控制器中不能 少了return

namespace module\controller;
use think\Controller;
class index extends Controller
{
        public function index{
                return this->view->fetch('index');
        }
}

你可能感兴趣的:(thinkphp5 模板渲染 在控制器中不能 少了return)