JS中如何判断传过来的JSON数据中是否存在某字段

kanbx 6 0 PDF 2020-12-31 14:12:34

如何判断传过来的JSON数据中,某个字段是否存在, 1.obj[“key”] != undefined 这种有缺陷,如果这个key定义了,并且就是很2的赋值为undefined,那么这句就会出问题了。 2.!(“key” in obj) 3.obj.hasOwnProperty(“key”) 这两种方法就比较好了,推荐使用。 答案原文: Actually, checking for undefined-ness is not an accurate way of testing whether a key exists. What if the key exists but the value

用户评论
请输入评论内容
评分:
暂无评论