我将列出一个 xml 文件中的一些项目,如下所示:
<artist href="spotify:artist:1gR0gsQYfi6joyO1dlp76N">
<name>Justice</name>
<popularity>0.59872</popularity>
</artist>
它是从http://ws.spotify.com/search/1/artist?q=justice请求的
我的代码如下所示:
var x=xmlDoc.getElementsByTagName("artist");
for (i=0;i<x.length;i++)
{
document.write("<tr><td>");
document.write(x[i].getElementsByTagName("name")[0].childNodes[0].nodeValue);
document.write("</td><td>");
document.write(x[i].getElementsByTagName("popularity")[0].childNodes[0].nodeValue);
document.write("</td><td>");
document.write(x[i].HOW DO I GET THE SPOTIFY URI);
document.write("</td></tr>");
}
document.write("</table>");
一切正常,除了我不知道如何将 spotify URL 放入表中