作者 Karson

修复在分层控制器下的权限验证错误

修复表单在提交后未返回token时导致的客户端错误
... ... @@ -117,7 +117,7 @@ class Backend extends Controller
if (!$this->auth->match($this->noNeedRight))
{
// 判断控制器和方法判断是否有对应权限
$path = $this->request->path();
$path = str_replace('.', '/', $this->request->path());
$path = substr($path, 0, 1) == '/' ? $path : '/' . $path;
if (!$this->auth->check($path))
{
... ...
... ... @@ -51,7 +51,7 @@ define(['jquery', 'bootstrap', 'backend', 'toastr', 'upload', 'validator'], func
}
Toastr.success(msg ? msg : __('Operation completed'));
} else {
if (typeof data.token !== 'undefined') {
if (data && typeof data === 'object' && typeof data.token !== 'undefined') {
$("input[name='__token__']").val(data.token);
}
Toastr.error(msg ? msg : __('Operation failed'));
... ...