Skip to content

修复因Ajax POST请求静态资源服务器返回 405 Not Allowed 的错误 #77

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/assets/js/backend/addon.js
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'template'], function
//刷新左侧边栏
Fast.api.refreshmenu();
//刷新插件JS缓存
Fast.api.ajax({url: require.toUrl('addons.js'), loading: false}, function () {
Fast.api.ajax({type: 'GET', url: require.toUrl('addons.js'), loading: false}, function () {
return false;
}, function () {
return false;
Expand Down