weixin_33738578 2016-06-16 09:37 采纳率: 0%
浏览 11

Ajax Json结果有限

i am not getting all my results from a Query back.

var url = "https://url?top=10000";
$.ajax({
        url: url,
        type: "GET",
        async: false,
        headers: {
            "accept": "application/json"
        },
        }).success(function (data) {
             console.log(data);
        })
});

There result is limited to 1000 results...

meta:Object
    count: 10562
    next : 1000

Can anyone tell me how can i loop through the request to get all results?

When i put the request URL directly into my browser i get all results back.

Thanks for your help

  • 写回答

0条回答 默认 最新

    报告相同问题?