我无法尝试将标头添加到我已经工作的同步方法中。我想我要么将它们作为 key: 对象传递,要么将它们设置在选项中;我在不同的帖子中看到了这两种方法。两者都没有尝试在 chromes 网络选项卡或我的 api 日志中显示标题。
我还尝试通过 jquery 设置进行全局设置:
$.ajaxSetup({
headers: { 'x-my-custom-header': 'some value' }
});
任何帮助将非常感激!!!
作为选项哈希。
sync: function(method, model, options) {
options.headers = { 'X-Key-Whatever' :'Foobar' }
// Default JSON-request options.
var params = _.extend({
type: 'GET',
dataType: 'jsonp',
url: model.url(),
processData: false,
jsonpCallback: 'abcShowSomething',
cache: true
}, options);
// Make the request.
return $.ajax(params);
},
作为参数键:
sync: function(method, model, options) {
// Default JSON-request options.
var params = _.extend({
type: 'GET',
headers: { 'X-Key-Whatever' :'Foobar' },
dataType: 'jsonp',
url: model.url(),
processData: false,
jsonpCallback: 'abcShowSomething',
cache: true
}, options);
// Make the request.
return $.ajax(params);
},