abstrakt:<?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(); } }
Korrigierender Lehrer:天蓬老師Korrekturzeit:2019-03-21 14:51:10
Zusammenfassung des Lehrers:推薦寫上模板文件名, 盡可能不要用默認(rèn)值,哪怕你重寫一次默認(rèn)名: return $this->fetch('index');