gpt4 book ai didi

javascript - 想要使用 javascript 在 ListView 中显示图像图标

转载 作者:行者123 更新时间:2023-11-30 08:34:09 25 4
gpt4 key购买 nike

我一直在尝试在表格中显示带有个人资料图片的用户 ListView 。我可以将图片显示为 url(从数据库中获取),但我想改为显示真实的图像图标。下面是我现在得到的截图。 image with URL我想显示真实图像而不是 URL。我为此使用 javascript。提前致谢。

最佳答案

我已经在上面给出的答案的帮助下解决了。

var data;

$.ajax({
type: "GET",
url: "http://localhost:1337/users",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: "",
success: function (data) {
console.log(data); //This is your result

console.log(data[1].profile_url);
for (var i = 0; i < data.length; i++) {
var node = document.createElement("LI");
var x = document.createElement("IMG");

x.setAttribute("src", data[1].profile_url);
x.setAttribute("width", "304");
x.setAttribute("width", "228");
x.setAttribute("alt", "The Pulpit Rock");
node.appendChild(x);
document.getElementById("myList").appendChild(node);

}

}
});

关于javascript - 想要使用 javascript 在 ListView 中显示图像图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33644627/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com