摘要:<?php namespace app\admin\controller; use think\Controller; class Index extends Controller { //渲染后臺首頁 public function index() { return $this->fetch(
<?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-03-21 14:51:10
老師總結(jié):推薦寫上模板文件名, 盡可能不要用默認值,哪怕你重寫一次默認名: return $this->fetch('index');