gpt4 book ai didi

javascript - 类型错误 : invalid 'in' operand obj

转载 作者:行者123 更新时间:2023-11-29 19:45:11 25 4
gpt4 key购买 nike

       json= new Gson().toJson(name);

其中名称是字符串类型。

我收到错误提示“TypeError: invalid 'in' operand obj”

错误在java脚本的给定部分

 return type === "array" || type !== "function" &&
( length === 0 ||
typeof length === "number" && length > 0 && ( length - 1 ) in obj );

我也试过

   response=JSON.parse(response); 

这是行不通的。

最佳答案

通过链接 In operator你可以看到

The in operator returns true if the specified property is in the specified object.

在您的代码 ( length - 1 ) in obj 中,您尝试检查属性 (length - 1) that numeric in your obj

我认为obj是一个string,所以它有length属性,但没有数字属性,所以你必须捕获这个案例

关于javascript - 类型错误 : invalid 'in' operand obj,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20210529/

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