使用jQuery AJAX我试图通过调用RESTful端点返回有限的结果。无需发布到服务器以将有限的结果返回到我的RESTful api。
我有以下代码:
$.ajax({
dataType: "json",
url: '/showroom-event-gallery-api',
success: function(data) {
console.log(data);
}
});
无论如何我可以添加一个方法,只返回从RESTful API检索到的JSON中的10个对象吗?目前,该终点已经返回了200多个结果。
由于
答案 0 :(得分:0)
试试这个:
$.ajax({
dataType: "json",
url: '/showroom-event-gallery-api',
success: function(data) {
console.log(data.slice(0,10));
}
});