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 ?
No trobeu una pel·lícula o una sèrie? Inicieu la sessió per a crear-la.
Desitgeu valorar o afegir aquest element a una llista?
No en sou membre?
Resposta per Travis Bell
el 13 , de 2014 a les 10:00 A.M.
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.