right now when i run a search i get a whole page of respones how to i limit that to say 5 of the top movies and not the whole page ???????? whats the variable ?
Δεν μπορείτε να βρείτε κάποια ταινία ή σειρά; Συνδεθείτε για να τη δημιουργήσετε.
Θέλετε να αξιολογήσετε ή να προσθέσετε αυτό το στοιχείο σε μια λίστα;
Δεν είσαι μέλος;
Απάντηση από τον/την Travis Bell
στις 13 Απρίλιος 2014 στις 10:00 ΕΊΜΑΙ
Hi jamiex304,
We do not support custom pagination settings. The
results
object is just an array. If you want to only show the first 5 elements, I believe you can useslice()
for that. You can look online for example of slice in JavaScript.Cheers.