5

我正在尝试向使用 "jsonp" 的 jQuery AJAX GET 请求添加一个接受标头dataType,但由于某种原因它不起作用。到目前为止,这是我的代码。

var e4json =  JSON.stringify( { 
                  "thomas_smith106"           : "Daniel244", 
                  "transaction_type"          : "34",
                  "transaction_tag"           : "902006933",
                  "authorization_num"         : "ET4653",
                  "amount"                    : "15.75"
              } ); 

$.ajax ({
    url: "https://api.demo.globalgatewaye4.firstdata.com",
    type: "GET",
    headers : {
        'accepts' : 'application/json'
    },
    data: e4json,
    dataType: "jsonp",
    success: function  (response) {
        alert('Successfuly called the e4 gateway api');
    }
});

我尝试了多种方法,但似乎没有任何效果。我查看了jQuery站点上的文档,但找不到任何好的示例。

这就是我得到的请求标头。我需要接受标头是“应用程序/json”。

Accept:*/*
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Cookie:_fd_session=d69310c5cd4a02a4700b5ba63f0d0c9b
Host:api.demo.globalgatewaye4.firstdata.com
Referer:http://localhost:8080/smart-two-site/customerinfo.html
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36

任何帮助都是极好的。谢谢!

4

3 回答 3

4

不幸的是,无法在 JSONP 请求上设置标头。JSONP 请求是通过向<script>网站添加标签来完成的,然后浏览器会像任何其他脚本一样加载该标签。请参阅 JSONP 的此说明。

于 2016-01-08T08:44:34.620 回答
-1

用这个;

headers: {          
     Accept : "application/json; charset=utf-8",         
    "Content-Type": "application/json; charset=utf-8"   
} 
于 2014-03-24T19:46:57.057 回答
-2

我想你想像这样设置它:

      headers: {          
             Accept : "application/json; charset=utf-8",         
            "Content-Type": "application/json; charset=utf-8"   
      }   
于 2014-03-24T19:46:17.190 回答