我试图用jquery ajax进行Zomato API调用,但是他们提供了一个curl命令。
curl -X GET --header "Accept: application/json" --header "user-key: key" "https://developers.zomato.com/api/v2.1/cities"
如何将此转换为$ .ajax()调用?
答案 0 :(得分:0)
$.ajax({
dataType: 'json',
url: 'https://developers.zomato.com/api/v2.1/cities',
headers: {
'user-key': 'put your key in here'
}
success: function(response, status, xhr) {
// Handle the response here.
}
});
有关详细信息,请参阅JQuery API docs。