我想问一下是否有方法可以解析$.ajax()
到$.getJSON()
的数据?
这是$.ajax()
示例:
var apiUrl = 'https://api.com/url_here';
var apiKey = 1234567890;
var apiSecret = 0987654321;
var data = {};
$.ajax({
url: apiUrl,
headers: {
"Authorization": "Basic " + btoa(apiKey+ ":" + apiSecret)
},
data: data,
dataType: 'json',
type: 'GET',
success: function(data) {
console.log(data);
},
error: function(data) {
console.log(data);
}
});
这就是我$.getJSON()
中的内容,我在调用headers
进行身份验证时遇到了困难:
$.getJSON(apiUrl, function(json){
console.log(JSON.stringify(json));
});
非常感谢! XXX