在 youtube api v2 文档中。它建议使用rel="previous"
和rel="next"
使用分页。
http://gdata.youtube.com/feeds/api/videos?start-index=51&max-results=25
假设上面的链接,从 51 开始,并在链接中限制 25 个视频参数。我的问题是,我不想直接使用链接,我想分离参数并传递给我的函数参数。
我怎样才能做到这一点?
在 youtube api v2 文档中。它建议使用rel="previous"
和rel="next"
使用分页。
http://gdata.youtube.com/feeds/api/videos?start-index=51&max-results=25
假设上面的链接,从 51 开始,并在链接中限制 25 个视频参数。我的问题是,我不想直接使用链接,我想分离参数并传递给我的函数参数。
我怎样才能做到这一点?
如果我理解您的问题,这很容易做到,只需将字符串分成块并插入您的函数参数。
function make_url(start_index, max_results) {
return "http://gdata.youtube.com/feeds/api/videos?start-index=" + start_index + "&max-results=" + max_results
}
然后调用 make_url(100, 25) 将返回一个这样的 url。
http://gdata.youtube.com/feeds/api/videos?start-index=100&max-results=25