0

我无法尝试将标头添加到我已经工作的同步方法中。我想我要么将它们作为 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);
        },
4

1 回答 1

0

经过 24-48 小时的研究,我发现了这一点。这是一个 JSONP 请求,因此不可能传递标头。[见1

于 2014-06-09T21:47:19.813 回答