摘要:<?php namespace app\admin\controller; use think\Controller; class Index extends Controller { public function index() &nb
<?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();
}
}
批改老师:韦小宝批改时间:2019-02-01 09:22:07
老师总结:写的很不错 渲染后台模板还是很简单的,但这个简单的方法却也有多种写法 没事可以研究研究!