无法找到视图文件,页面模板:qisu/article/liuyan.html.php

67.              $controllerLayout str_replace(File_TXT,'.html',$controllerLayout);
68.              if (file_exists($controllerLayout)) {
69.                  $this->template($controllerLayout);
70.              }else{
71.                  $f strpos($name,File_TXT)!==false $name $name.File_TXT;
72.                  Error_msg('无法找到视图文件,页面模板:'.$f);
73.              }
74.            
75.          }
76.          
77.          
62.      }
63. 
64.      // 渲染视图
65.      public function display($name=null)
66.      {
67.          $this->_view->render($name);
68.      }
69.      
70.      // 获取URL参数值
71.      public function frparam($str=null$int=0,$default FALSE$method null){
72.          
337.              if(!$res['lists_html']){
338.                  $lists_html M('molds')->getField(['biaoshi'=>$this->type['molds']],'list_html');
339.                  $res['lists_html'] = str_replace('.html','',$lists_html);
340.              }
341.              
342.              $this->display($this->template.'/'.$res['molds'].'/'.$res['lists_html']);
343.              if(!$this->frparam('ajax')){
344.              $this->end_cache($this->cache_file);
345.              }
346. 
347.              
330.                  }
331.              
332.              }
333.          }
334.          $dispatch = new $controller($param);
335.          $dispatch->$actionName($param);
336.         
337.          
338.          
339.          
340.      }
89.          spl_autoload_register(array($this'loadClass'));
90.          $this->setDbConfig();
91.          $this->setReporting();
92.          $this->removeMagicQuotes();
93.          //$this->unregisterGlobals();
94.          $this->route();
95.          
96.      }
97. 
98.      // 路由处理
99.      public function route()
515.      //定义静态文件路径
516.      defined('Tpl_style') or define('Tpl_style''/static/');
517.  }
518.  header_remove('X-Powered-By');
519.  //实例化核心类
520.  (new frphp($config))->run();
12. 
13.  // 应用目录为当前目录
14.  define('APP_PATH'__DIR__ '/');
15.  define('ADMIN_MODEL','admins');
16.  // 加载框架文件
17.  require(APP_PATH 'frphp/fr.php');
18. 
19.  // 就这么简单~
20.