ソースを参照

Don't cache in jquery ajax

version-14
Nabin Hait 9年前
コミット
7047bd29ad
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      frappe/public/js/frappe/request.js

+ 2
- 1
frappe/public/js/frappe/request.js ファイルの表示

@@ -125,7 +125,8 @@ frappe.request.call = function(opts) {
type: opts.type,
dataType: opts.dataType || 'json',
async: opts.async,
headers: { "X-Frappe-CSRF-Token": frappe.csrf_token }
headers: { "X-Frappe-CSRF-Token": frappe.csrf_token },
cache: false
};

frappe.last_request = ajax_args.data;


読み込み中…
キャンセル
保存