如何从json数组中加载图片?

发布于 2024-10-30 01:09:02 字数 518 浏览 1 评论 0原文

我想知道如何将 json 文件中的几个图像加载到 li 中? 这是 json 文件

[
{"id":"1",
 "link":"11.jpg",
}
{"id":"2",
 "link":"12.jpg",
}
{"id":"3",
 "link":"13.jpg",
}
]

,我有一个

我已经尝试过这个,但没有成功:

$.getJSON("feed.json", loadImage);
 function loadImage(data) {
 $.each(data.link, function(i,item){
    $("<img/>").attr("src", item).appendTo("#links");
 });
 }

有什么想法吗?

编辑:即使使用 item 仍然不起作用。图像位于同一文件夹中

i am wondering how to load a couple of images from a json file into an li?
here is the json file

[
{"id":"1",
 "link":"11.jpg",
}
{"id":"2",
 "link":"12.jpg",
}
{"id":"3",
 "link":"13.jpg",
}
]

and i have an <ul id="links"></ul>

I've tried this, but without success:

$.getJSON("feed.json", loadImage);
 function loadImage(data) {
 $.each(data.link, function(i,item){
    $("<img/>").attr("src", item).appendTo("#links");
 });
 }

any ideas?

edit: even with item still doesn't work . The images are in the same folder

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

星光不落少年眉 2024-11-06 01:09:02

首先,您可以在使用之前尝试定义 loadImage 函数。不管怎样,它应该看起来更像这样:

$.getJSON("feed.json", function(data) {
    $.each(data, function(i,item) {
        $("<img/>").attr("src", item.link).appendTo("#links");
    }
});

To start with you could try defining the loadImage function before you use it. Anyway, it should look more like that:

$.getJSON("feed.json", function(data) {
    $.each(data, function(i,item) {
        $("<img/>").attr("src", item.link).appendTo("#links");
    }
});
妄断弥空 2024-11-06 01:09:02
$.getJSON("feed.json", loadImage);
 function loadImage(data) {
 $.each(data.items, function(i,item){
    $("<img/>").attr("src", item.link).appendTo("#links"); //use item.link. 
 )};
}
$.getJSON("feed.json", loadImage);
 function loadImage(data) {
 $.each(data.items, function(i,item){
    $("<img/>").attr("src", item.link).appendTo("#links"); //use item.link. 
 )};
}
昇り龍 2024-11-06 01:09:02

您可能应该在 each 函数中使用 item 参数,而不是 data.link。因为 item 指的是您正在迭代的当前项目。

更改:更改

$("<img/>").attr("src", data.link).appendTo("#links");

为以下内容:

$("<img/>").attr("src", item.link).appendTo("#links"); // Changed data.link to item.link

尝试在 each 函数中跟踪 item

You should probably use the item parameter in the each function instead of data.link. Because item refers to the current item you're iterating over.

Change:

$("<img/>").attr("src", data.link).appendTo("#links");

To the following:

$("<img/>").attr("src", item.link).appendTo("#links"); // Changed data.link to item.link

Try tracing item in the each function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文