我必須爲每個ajax請求設置自定義標題,有沒有辦法做到這一點,而不必在每個ajax代理手動配置它。如何爲ext5中的每個ajax請求設置公共請求標頭?
proxy: {
headers: {
token: 'xyz' // this token that every proxy should contain to communicate with our remote server.
}
}
在jQuery中,我可以通過使用「ajaxPrefilter」做到這一點像以下:
jQuery.ajaxPrefilter(function(options, originalOptions, jqXHR) {
jqXHR.setRequestHeader('token', 'xyz');
}
但我不知道如何正確地做它在ExtJS的,請大家幫忙!
它的工作原理,謝謝。 – gaols 2014-09-30 13:16:45