页面跳转的error和success模板分开 \think\controller类添加result方法 用于单独返回不同格式的api数据

This commit is contained in:
thinkphp
2016-02-14 22:48:14 +08:00
parent f637f06e0d
commit 00f226a6f9
3 changed files with 18 additions and 3 deletions

View File

@@ -181,7 +181,7 @@ class Response
$type = IS_AJAX ? Config::get('default_ajax_return') : Config::get('default_return_type');
if ('html' == $type) {
$result = \think\View::instance()->fetch(Config::get('dispatch_jump_tmpl'), $result);
$result = \think\View::instance()->fetch(Config::get('dispatch_success_tmpl'), $result);
}
self::type($type);
return $result;
@@ -214,7 +214,7 @@ class Response
$type = IS_AJAX ? Config::get('default_ajax_return') : Config::get('default_return_type');
if ('html' == $type) {
$result = \think\View::instance()->fetch(Config::get('dispatch_jump_tmpl'), $result);
$result = \think\View::instance()->fetch(Config::get('dispatch_error_tmpl'), $result);
}
self::type($type);
return $result;