1. 首页
  2. 数据库
  3. 其它
  4. JS中如何判断传过来的JSON数据中是否存在某字段

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

上传者: 2020-12-31 14:00:34上传 PDF文件 23KB 热度 8次
如何判断传过来的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
用户评论