我该如何转换:
var dataURL = 'http://example.com/data.json';
var queryOptions = {
start: Date.parse('today - 15 years').getTime()/1000,
end: Date.parse('today').getTime()/1000
}
$.getJSON(dataURL, queryOptions, function(jsonresult) {
...到jQuery .ajax调用?
答案 0 :(得分:6)
$.ajax({
url: dataURL
data: queryOptions,
dataType: 'json',
success:function(jsonresult){
//json here
}
});
尽管$.getJSON()
只是JSON为$.ajax()
方法准备的简写包装。
答案 1 :(得分:1)
$.ajax({
type: "GET",
url: dataURL,
dataType: "json",
data: queryOptions,
success: function(result) {
//
},
error: function(xhr, status, error) {
//
}
});