0

我可以从 tumblr json api 获取 id 和日期,但不能获取照片本身 :(

http://jsfiddle.net/82wNq/11/

$.getJSON("http://fuckyeahgirlswithvinylrecords.tumblr.com/api/read/json?callback=?", function (data) {
    $.each(data.posts, function (index, item) {
        $("<div>").html(item.id).appendTo("#content");
        $("<div>").html(item.date).appendTo("#content");
        $("<img>").attr("src", item.photo-url-100).appendTo("#content");
    });
});
4

3 回答 3

3

属性中不能有破折号。使用括号表示法:

http://jsfiddle.net/ZFZ6R/

$("<img>").attr("src", item['photo-url-100']).appendTo("#content");
于 2013-11-06T17:03:01.600 回答
1

更改item.photo-url-100item['photo-url-100']

于 2013-11-06T17:03:39.647 回答
1

如下调用它,

$.getJSON("http://fuckyeahgirlswithvinylrecords.tumblr.com/api/read/json?callback=?", function (data) {
    $.each(data.posts, function (index, item) {
        $("<div>").html(item.id).appendTo("#content");
        $("<div>").html(item.date).appendTo("#content");
        $("<img>").attr("src", item['photo-url-100']).appendTo("#content");
    });
});
于 2013-11-06T17:05:35.550 回答