Switch language
zh
Switch theme
Light

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

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