javascript - jQuery AJAX return limited results from REST end point -
using jquery ajax trying return limited results call restful end point. without having post server return limited results restful api.
i have following code:
$.ajax({ datatype: "json", url: '/showroom-event-gallery-api', success: function(data) { console.log(data); } });
is there anyway can add method return 10 objects json retrieved restful api? @ moment end point has on 200 results returned.
thanks
try this:
$.ajax({ datatype: "json", url: '/showroom-event-gallery-api', success: function(data) { console.log(data.slice(0,10)); } });
Comments
Post a Comment