企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
#### 渲染模板 继承`think\Controller`的另外一个便利就是可以直接进行模板变量赋值以及渲染输出。 ~~~ <?php namespace app\index\controller; use think\Controller; class Index extends Controller { public function hello() { // 赋值模板变量 $this->assign('name',$this->request->param('name')); // 渲染模板输出 return $this->fetch('hello'); } } ~~~ 更多的模板渲染的内容我们会在后面模板渲染一讲中详细为你讲解。