最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JS中如何判斷傳過來的JSON數(shù)據(jù)中是否存在某字段

 更新時(shí)間:2014年08月18日 10:31:50   投稿:whsnow  
這篇文章主要介紹了JS中如何判斷傳過來的JSON數(shù)據(jù)中是否存在某字段,需要的朋友可以參考下

如何判斷傳過來的JSON數(shù)據(jù)中,某個(gè)字段是否存在,

1.obj["key"] != undefined

這種有缺陷,如果這個(gè)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 is actually undefined?

var obj = { key: undefined };
obj["key"] != undefined // false, but the key exists!

You should instead use the in operator:

"key" in obj // true, regardless of the actual value

If you want to check if a key doesn't exist, remember to use parenthesis:

!("key" in obj) // true if "key" doesn't exist in object
!"key" in obj // ERROR! Equivalent to "false in obj"

Or, if you want to particularly test for properties of the object instance (and not inherited properties), usehasOwnProperty:

obj.hasOwnProperty("key") // true

相關(guān)文章

最新評論

双鸭山市| 竹北市| 利川市| 阿克苏市| 松江区| 龙江县| 冀州市| 宁强县| 若羌县| 栾川县| 肥乡县| 县级市| 都昌县| 来凤县| 麻栗坡县| 梧州市| 郑州市| 独山县| 台安县| 阳高县| 德惠市| 汕头市| 行唐县| 司法| 连南| 宁河县| 大竹县| 镇安县| 忻州市| 眉山市| 丹江口市| 莎车县| 辉县市| 武邑县| 大理市| 湖口县| 新丰县| 塔河县| 宜兴市| 岳阳市| 同江市|