摘要:<?php namespace app\admin\controller; // 引入框架控制器 use think\Controller; // 繼承框架控制器 class Index extends Controller { // 后臺首頁 &nbs
<?php namespace app\admin\controller; // 引入框架控制器 use think\Controller; // 繼承框架控制器 class Index extends Controller { // 后臺首頁 public function index() { // 渲染模板 return $this->fetch(); } // 后臺歡迎頁面 public function welcome() { // 渲染模板 return $this->fetch(); } }
批改老師:查無此人批改時間:2019-04-25 13:38:43
老師總結(jié):完成的不錯。渲染頁面后,要寫邏輯了。繼續(xù)加油。