When I make a discover request with javascript and use JSON.parse, how do I access the data of the other results? Like the 2nd, 3rd, 4th,... etc result? Also, how do I use the sort by parameter?
Do you mean the items in returned in the results of a list? If so, the results field is just an array so if you loop through it, you can get the results. If you mean pages, just add page=X to each request and you'll get each subsequent page.
There's an example iterating through the array of results here. Just make sure to change the api key on line 11.
Travis Bell 的回复
于 2013 年 08 月 30 日 4:41下午
Do you mean the items in returned in the results of a list? If so, the results field is just an array so if you loop through it, you can get the results. If you mean pages, just add
page=X
to each request and you'll get each subsequent page.There's an example iterating through the array of results here. Just make sure to change the api key on line 11.
Cheers.
Brent 的回复
于 2015 年 11 月 22 日 11:06下午
That link takes me to a page with the text "Jquery Test [new line] Results" with no other text
Travis Bell 的回复
于 2015 年 11 月 23 日 10:40上午
Hi Brent,
Make a copy of the source, change line 11 with your API key and then run it. You won't be able to run the file as is, it's just a demo.