namespace app\index\controller;
use think\view;
class Index{
public function index(){
$view = new view();
return $view->fetch('index');
}
}
二、直接使用view助手函数渲染模板
namespace app\index\controller;
class Index{
public function index() {
return view('index');
}
}
三、使用控制器类渲染模板
继承think\Controller类
如果继承了think\Controller类,就可以直接调用think\View及think\Request类的方法。例子:
namespace app\index\controller;
use think\Controller;
class Index extends Controller{
public function index(){
$this->assign('domain', $this->request->url(true));
return $this->fetch('index');
}
}
以上就是本文的全部内容,感谢大家支持JScript之家——编程学习者社区!