1

我怎样才能转换这个:

    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 调用?

4

2 回答 2

7
$.ajax({
    url: dataURL
    data: queryOptions,
    dataType: 'json',
    success:function(jsonresult){
        //json here
    }
});

虽然,$.getJSON()它只是该方法的简写 JSON 准备包装器$.ajax()

于 2013-01-13T07:14:38.047 回答
1
$.ajax({
    type: "GET",
    url: dataURL,
    dataType: "json",
    data: queryOptions,
    success: function(result) {
        //
    },
    error: function(xhr, status, error) {
        //
    }
});
于 2013-01-13T07:15:05.743 回答