标签:
跨模块调用success和error方法的模板
在模块配置文件中变更如下配置
//默认错误跳转对应的模板文件
‘TMPL_ACTION_ERROR‘ => APP_PATH.‘Home/View/Tpl/dispatch_jump.html‘,
//默认成功跳转对应的模板文件
‘TMPL_ACTION_SUCCESS‘ => APP_PATH.‘Home/View/Tpl/dispatch_jump.html‘,
// 定义公共错误模板
‘TMPL_EXCEPTION_FILE‘=> APP_PATH.‘Home/View/Tpl/think_exception.html‘ ,
即将本模块的success和error方法模板指定为home模块下的自定义模板文件。
$this->success(‘操作完成‘);
$this->error(‘操作失败‘);
跨模块调用
当前模版文件中包含其他的模版文件使用include标签
<include file="Home@Index/generalFooter" />
// 跨模块包含Homo模块的模板文件
标签:
原文地址:http://www.cnblogs.com/shanheshui/p/4548259.html