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

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -