摘要:<?phpnamespace app\admin\controller;//use think\facade\View; //view創(chuàng)建靜態(tài)代理use think\Controller;class Index extends Controller{ public function index() {&nbs
<?php
namespace app\admin\controller;
//use think\facade\View; //view創(chuàng)建靜態(tài)代理
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch();
}
//模板渲染
public function welcome()
{
return $this->fetch();
}
}
批改老師:查無此人批改時間:2019-06-13 09:14:45
老師總結(jié):完成的不錯。多看thinkphp的文檔,多練習(xí)功能,很快就能上手。繼續(xù)加油。