[tp5] thinkPHP5-渲染模板的方式

From: https://blog.csdn.net/Wake_me_Up123/article/details/76096174

默认情况下,控制器的输出全部采用return的方式,无需进行任何的手动输出,系统会自动完成渲染内容的输出。

在控制器里渲染模板

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');
    }
}

你可能感兴趣的:(php)