gpt4 book ai didi

javascript - 在 WordPress 中的“操作数 a”中获取 "TypeError: invalid '

转载 作者:行者123 更新时间:2023-11-28 07:02:51 25 4
gpt4 key购买 nike

因此,我在 WordPress 中收到 TypeError: invalid 'in' operand a 错误(不确定这是否与其相关),并且我不太确定代码出了什么问题。

这是有问题的代码:

e_jsonObj = [];            
$.each(the_wpcc_posts, function(i, the_wpcc_post) {
var e_post_id = the_wpcc_post[i].ID;
var e_title = the_wpcc_post[i].post_title;
var e_start = the_wpcc_post[i].post_date_gmt;

e_item = {}
e_item ["id"] = e_post_id;
e_item ["title"] = e_title;
e_item ["start"] = e_start;

console.log(e_item);

e_jsonObj.push(e_item);

});

非常感谢这里的任何帮助。

最佳答案

通过在每个循环之前解析数据来尝试这种方法。看起来您正在尝试迭代一个字符串,这导致了此错误。

e_jsonObj = [];
data = $.parseJSON(the_wpcc_posts); // parsing data
$.each(data, function(i, the_wpcc_post) {
var e_post_id = the_wpcc_post[i].ID;
var e_title = the_wpcc_post[i].post_title;
var e_start = the_wpcc_post[i].post_date_gmt;

e_item = {}
e_item ["id"] = e_post_id;
e_item ["title"] = e_title;
e_item ["start"] = e_start;

console.log(e_item);

e_jsonObj.push(e_item);

});

关于javascript - 在 WordPress 中的“操作数 a”中获取 "TypeError: invalid ',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31958047/

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