3.1.0 - 普通 - 未处理
Public function _initialize(){
C('TEMPLATE_NAME','./views/admin/index.html');
//动态配置无效
}
public function index(){
echo C('TEMPLATE_NAME');
//输出默认值
}
这样的是有效的:public function index(){
C('TEMPLATE_NAME','./views/admin/index.html');
echo C('TEMPLATE_NAME');
//输出./views/admin/index.html
}