JS中如何判断传过来的JSON数据中是否存在某字段
如何判断传过来的JSON数据中,某个字段是否存在,
1.obj["key"]!=undefined
这种有缺陷,如果这个key定义了,并且就是很2的赋值为undefined,那么这句就会出问题了。
2.!("key"inobj)
3.obj.hasOwnProperty("key")
这两种方法就比较好了,推荐使用。
答案原文:
Actually,checkingforundefined-nessisnotanaccuratewayoftestingwhetherakeyexists.Whatifthekeyexistsbutthevalueisactuallyundefined?
varobj={key:undefined};
obj["key"]!=undefined//false,butthekeyexists!
Youshouldinsteadusetheinoperator:
"key"inobj//true,regardlessoftheactualvalue
Ifyouwanttocheckifakeydoesn'texist,remembertouseparenthesis:
!("key"inobj)//trueif"key"doesn'texistinobject
!"key"inobj//ERROR!Equivalentto"falseinobj"
Or,ifyouwanttoparticularlytestforpropertiesoftheobjectinstance(andnotinheritedproperties),usehasOwnProperty:
obj.hasOwnProperty("key")//true
热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短