2013-04-04 105 views
0

在youtube api v2文檔中。它建議使用rel="previous"rel="next" 與分頁工作。Youtube javascript api分頁參數

http://gdata.youtube.com/feeds/api/videos?start-index=51&max-results=25 

讓我們說上面的鏈接,開始與51和限制鏈路內25個視頻PARAMS。 我的問題是,我不想直接使用鏈接,我想分開這些參數並傳遞給我的函數參數。

我該怎麼做?

回答

0

如果我理解你的問題,這很容易做到,只需將字符串分成塊並插入你的函數參數即可。

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 
+0

但youtube api json不提供單獨的start_index和max_results。他們一起來鏈接。 – vzhen 2013-04-05 07:51:21