gpt4 book ai didi

php - 使用 jQuery 和 PHP 在 div 中循环显示 JSON 数据

转载 作者:行者123 更新时间:2023-12-01 07:06:23 27 4
gpt4 key购买 nike

我使用 jQuery 和 JSON 从数据库获取数据

$("#openNotification").on('click', function(e)
{
ID = "a";
$.ajax(
{
url: "notificationDetail",
type: "POST",
data:
{
designationID: ID
},
dataType: "JSON",
success: function (jsonStr)
{
$(".processingNotification").hide();

var jSonLength = jsonStr.length;

for (var i=0; i<jSonLength; i++)
{
var userAvatar = jsonStr[0].userAvatar;

var newrow = "<div class='subNotification'><img src='assets/img/avatar/"+userAvatar+"'/></div>";


}


$(".opened_page").html(newrow);
}
});
});

HTML

<div class="opened_page"></div>

当我点击#openNotification时,我可以看到来自 PHP 的 json 数据

enter image description here

但是当我想将数据显示到 .opened_pa​​ge 时,它只显示 1 条数据。

最佳答案

您要替换为新值,代码应该是

var newrow = '';
for (var i=0; i<jSonLength; i++)
{
var userAvatar = jsonStr[0].userAvatar;
newrow += "<div class='subNotification'><img src='assets/img/avatar/"+userAvatar+"'/></div>";
}

关于php - 使用 jQuery 和 PHP 在 div 中循环显示 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42850905/

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