2015-01-10 46 views
-1

我正在嘗試使用blueimp製作視頻庫。 https://github.com/blueimp 不幸的是,我不擅長於MySQL,我想知道如何將具有YouTube網址的查詢返回到JavaScript數組中。 實施例:對JavaScript數組的SQL查詢

blueimp.Gallery([{ 標題 : '辛特爾', HREF: 'https://archive.org/download/Sintel/sintel-2048-surround_512kb.mp4', 類型: '視頻/ MP4', 海報: 'https://i.imgur.com/MUSw4Zu.jpg' },...

感謝不已,希望能幫到你。

+0

您使用哪種語言來執行MySQL查詢? – Ding

+0

我正在使用PHP .. – Lebon

回答

0

你應該使用PHP函數json_encode()陣列上,將其轉換爲JavaScript對象。

你應該這樣做what was done here

$sth = mysqli_query("SELECT ..."); 
$rows = array(); 
while($r = mysqli_fetch_assoc($sth)) { 
    $rows[] = $r; 
} 
print json_encode($rows); 

您可能需要做一些工作來組裝數組你想要的格式。在上述代碼IE的while循環中執行:

$sth = mysqli_query("SELECT ..."); 
$rows = array(); 
while($r = mysqli_fetch_assoc($sth)) { 
    $rows[]['title'] = $r['title']; 
    $rows[]['href'] = $r['href']; 
} 
print json_encode($rows);