无法找到视图文件,页面模板:yinyue/juhe/lists.html
- /www/wwwroot/web/frphp/lib/View.php on line 81
 
76. 
            //检测其是否可读可写
77. 
            
78. 
            
79. 
            
80. 
        } else {
81. 
82. 
           Error_msg('无法找到视图文件,页面模板:'.$name.'.html');
        }
83. 
        
84. 
        
85. 
        
86. 
    }
- /www/wwwroot/web/frphp/lib/Controller.php on line 62
 
57. 
    }
58. 
59. 
    // 渲染视图
60. 
    public function display($name=null)
61. 
    {
62. 
63. 
        $this->_view->render($name);
    }
64. 
    
65. 
    // 获取URL参数值
66. 
    public function frparam($str=null, $int=0,$default = FALSE, $method = null){
67. 
        
- /www/wwwroot/web/application/home/c/HomeController.php on line 353
 
348. 
            if(!$res['lists_html']){
349. 
                $lists_html = M('molds')->getField(['biaoshi'=>$this->type['molds']],'list_html');
350. 
                $res['lists_html'] = str_replace('.html','',$lists_html);
351. 
            }
352. 
            
353. 
354. 
            $this->display($this->template.'/'.$res['molds'].'/'.$res['lists_html']);
            if(!$this->frparam('ajax')){
355. 
356. 
            }
357. 
358. 
            
- /www/wwwroot/web/frphp/fr.php on line 336
 
331. 
                }
332. 
            
333. 
            }
334. 
        }
335. 
        $dispatch = new $controller($param);
336. 
337. 
        $dispatch->$actionName($param);
338. 
        
339. 
        
340. 
        
341. 
    }
- /www/wwwroot/web/frphp/fr.php on line 93
 
88. 
        spl_autoload_register(array($this, 'loadClass'));
89. 
        $this->setDbConfig();
90. 
        $this->setReporting();
91. 
        $this->removeMagicQuotes();
92. 
        //$this->unregisterGlobals();
93. 
94. 
        $this->route();
        
95. 
    }
96. 
97. 
    // 路由处理
98. 
    public function route()
- /www/wwwroot/web/frphp/fr.php on line 466
 
461. 
462. 
// 加载配置文件
463. 
$config = require(APP_PATH . 'conf/config.php');
464. 
465. 
//实例化核心类
466. 
(new FrPHP($config))->run();
- /www/wwwroot/web/index.php on line 50
 
45. 
46. 
//定义静态文件路径
47. 
define('Tpl_style','/static/');
48. 
49. 
// 加载框架文件
50. 
51. 
require(APP_PATH . 'frphp/fr.php');
52. 
// 就这么简单~
53.