config = config('view'); $className = '\\top\\library\\template\\driver\\' . $this->config['engine']; if (!class_exists($className)) { throw new \Exception('不存在的模板引擎:' . $className); } $this->template = Template::instance($className::instance()); } /** * 传递参数 * @param string $name * @param mixed $value */ public function param($name, $value) { $this->template->param($name, $value); } /** * 页面静态缓存,直接调用默认为开启 * @param bool $status */ public function cache($status = true) { $this->template->cache($status); } /** * 获取视图 * @param string $file * @param array $param * @param int|bool $cache * @return mixed * @throws \Exception */ public function fetch($file = '', $param = [], $cache = false) { if (!$file) { $file = request()->controller() . '/' . request()->method(); } return $this->template->fetch($file, $param, $cache); } }