控制器的代码

Original 2019-04-07 10:40:44 246
abstract:<?phpnamespace app\admin\controller;use think\Controller;/*** 后台首页控制器*/class Index extends Controller{ public function index() { return $this->view->fetch(); } public function welcome() {

<?php

namespace app\admin\controller;

use think\Controller;



/**

* 后台首页控制器

*/

class Index extends Controller

{


public function index()

{

return $this->view->fetch();

}


public function welcome()

{

return $this->view->fetch();

}

}


Correcting teacher:天蓬老师Correction time:2019-04-08 09:44:22
Teacher's summary:渲染后台首页, 全部采用了默认值, 不过, 还是推荐手工写上模板名称会提升可读性

Release Notes

Popular Entries