JS中判断JSON数据是否存在某字段的方法

上传:lyh55131 浏览: 19 推荐: 0 文件:PDF 大小:30.72KB 上传时间:2020-12-31 15:24:46 版权申诉
如何判断传过来的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 th
上传资源
用户评论