企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
### 载入模版 ~~~ /** * 获取视图 * 视图文件位置: /application/example/view/ViewController/fetchExample.html * @return string */ public function fetchExample() { return $this->fetch(); } ~~~ ~~~ /** * 获取指定的视图 * 视图文件位置: /application/example/view/ViewController/index.html * @return string */ public function fetchDesignated() { // 获取ViewController控制器下index.html视图 // return $this->fetch('ViewController/index'); // 获取当前控制器下index.html视图 return $this->fetch('index'); } ~~~