????:<?phpnamespace app\admin\controller;//引入控制器use think\Controller;//繼承控制器class Index extends Controller{ //渲染index模板 public function index() { &nbs
<?php
namespace app\admin\controller;
//引入控制器
use think\Controller;
//繼承控制器
class Index extends Controller
{
//渲染index模板
public function index()
{
return $this->fetch();
}
//渲染welcome模板
public function welcome()
{
return $this->fetch();
}
}
?? ???:天蓬老師?? ??:2019-04-27 17:38:12
???? ??:public function welcome()
{
return $this->fetch();
}
因為后臺用了內聯框架, 所以要單獨渲染一下