如何在Javascript中将curl命令转换为$ .ajax()调用

时间:2016-11-27 04:43:35

标签: javascript ajax api

我试图用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()调用?

1 个答案:

答案 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