gpt4 book ai didi

javascript - 循环遍历 JSON 数组并替换为 NULL 的值

转载 作者:行者123 更新时间:2023-12-03 08:54:53 25 4
gpt4 key购买 nike

我有一个来 self 的 Controller 的 JSON 数组

<%= raw @visits %>

enter image description here

我只是想循环遍历这个,如果“name”为空,则将其替换为字符串“Unknown”。目前这失败了。

var withNull = <%= raw @visits %>;

var noNull = $.each(withNull, function(obj) {
if(obj.name == null) {
obj.name = "Unknown";
}
});

最佳答案

使用

$.each(withNull, function(idx, obj) {

jQuery 的 $.each 回调的参数按“向后”顺序排列。它首先传递索引,然后传递元素。

更喜欢使用

withNull.forEach(function(obj) {

关于javascript - 循环遍历 JSON 数组并替换为 NULL 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32550780/

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