多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 载入模版 ~~~ /** * 获取视图 * 视图文件位置: /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'); } ~~~