ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的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'); } ~~~