使用 jQuery $.ajax 和 Last.FM API 创建/访问 JSON 对象
我最近更改了网站设计,现在需要对我的数据使用动态 AJAX 请求。基本上,我尝试使用 JSON 格式的 Last.FM API 检索用户数据。
我对此很陌生,尤其是 JSON,这让我有点头疼!我知道我一定错过了一些简单的事情。
这是一些非常基本的代码来测试功能,但它没有检索任何内容!
<html>
<head>
<script src="./jquery/jquery-1.4.4.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function() {
$.getJSON("http://ws.audioscrobbler.com/2.0/?method=user.getTopArtists&user=test&api_key=690e1ed3bc00bc91804cd8f7fe5ed6d4&limit=5&format=json&callback=?", function(data) {
$.each(data.topartists.artist, function(i,item){
html += "<p>" + item.name + " - " + item.playcount + "</p>";
});
$('#test').append(html);
});
});
</script>
<div id="test"></div>
</body></html>
有什么建议吗?
我希望能够在整个页面中使用 JSON 对象,因此,例如,我可以随时调用 topartists.artist[i].playcount;显示播放次数等。我该怎么做?
I've recently changed my site design and now need to use dynamic AJAX requests for my data. Basically, I'm trying to retrieve user data using the Last.FM API in JSON format.
I'm newish to this, particularly JSON, and it's giving me a bit of a headache! I know I must be missing something simple.
Here is some very basic code to test the functionality but it's not retrieving anything!
<html>
<head>
<script src="./jquery/jquery-1.4.4.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function() {
$.getJSON("http://ws.audioscrobbler.com/2.0/?method=user.getTopArtists&user=test&api_key=690e1ed3bc00bc91804cd8f7fe5ed6d4&limit=5&format=json&callback=?", function(data) {
$.each(data.topartists.artist, function(i,item){
html += "<p>" + item.name + " - " + item.playcount + "</p>";
});
$('#test').append(html);
});
});
</script>
<div id="test"></div>
</body></html>
Any suggestions?
I would like to be able to use the JSON object throughout the page so, for example, at any time I can just call topartists.artist[i].playcount; to display the playcount, etc. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
html 变量必须在
each
的范围之外声明:对于第二个问题,您需要一个全局变量。您可以将其放在
$(document).ready()
之前(如注释所示),这样就可以在任何地方访问它。The html variable must be declared outside the scope of the
each
:As for your second question, you'll need a global variable. You can put it before
$(document).ready()
(as shown in the comment) and it will be accessible everywhere.我尝试了您正在使用的以下网址
“http://ws.audioscrobbler.com/2.0/?method=user.getTopArtists&user=test&api_key=690e1ed3bc00bc91804cd8f7fe5ed6d4&limit=5&format=json&callback=?”
它给出的 json 格式不正确,但如果我使用以下 URL
“http://ws.audioscrobbler.com/2.0/?method=user.getTopArtists&user=test&api_key=690e1ed3bc00bc91804cd8f7fe5ed6d4&limit=5&format=json”
我得到了正确的JSON。
此外,您还必须将 html 声明为上面给出的响应。
I tried the following URL what you are using
"http://ws.audioscrobbler.com/2.0/?method=user.getTopArtists&user=test&api_key=690e1ed3bc00bc91804cd8f7fe5ed6d4&limit=5&format=json&callback=?"
It gives not-well-formed json but if I use following URL
"http://ws.audioscrobbler.com/2.0/?method=user.getTopArtists&user=test&api_key=690e1ed3bc00bc91804cd8f7fe5ed6d4&limit=5&format=json"
I got the correct JSON.
Also you'll have to declare html as the response given above.