国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

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

2019-11-20 14:15:40
字體:
來源:轉載
供稿:網友

如何判斷傳過來的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 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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 东乌| 琼结县| 陇南市| 高平市| 宜良县| 道真| 大冶市| 大庆市| 个旧市| 惠安县| 德江县| 酉阳| 中山市| 金乡县| 越西县| 邵阳市| 贵港市| 大冶市| 沽源县| 信阳市| 共和县| 南投市| 宣武区| 西林县| 定结县| 寻甸| 潜江市| 玛纳斯县| 阳城县| 华容县| 永昌县| 民丰县| 保山市| 建昌县| 永丰县| 钟祥市| 治多县| 茌平县| 沙雅县| 元阳县| 即墨市|