我正在尝试与Jquery进行ajax调用以从网站检索json数据。我无法让它在Jquery中工作,但我能够使用python Requests Library使其工作。如何使用jquery获取ajax数据?
此代码可以运行并获取我想要的数据(但是,我希望客户端不是服务器端)
import requests
request = requests.get('http://volaris.com/locations/json/autocomplete/?term=tij&where=&loc=&lang=en')
此代码没有。这是我想要的代码。截至目前,它只能击中失败功能。
$.ajax({
url: 'http://volaris.com/locations/json/autocomplete/?term=tij&where=&loc=&lang=en',
type: 'GET',
daType: 'json',
cache: true,
error: function() {
alert( "ajax error" );
},
success: function(json) {
alert( "ajax success");
}
});