JS中如何判斷傳過來的JSON數(shù)據(jù)中是否存在某字段
如何判斷傳過來的JSON數(shù)據(jù)中,某個字段是否存在,
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
相關文章
一文帶你搞懂JavaScript中的進制與進制轉(zhuǎn)換
JavaScript 中提供的進制表示方法有四種:十進制、二進制、十六進制、八進制。本文主要講介紹一下JS中這些進制的互相轉(zhuǎn)換,感興趣的可以了解一下2023-02-02
js函數(shù)獲取html中className所在的內(nèi)容并去除標簽
本文為大家介紹下如何使用js函數(shù)獲取html中className所在的內(nèi)容,具體實現(xiàn)思路如下,喜歡的朋友可以參考下2013-09-09
JavaScript移除數(shù)組內(nèi)重復元素的方法
這篇文章主要介紹了JavaScript移除數(shù)組內(nèi)重復元素的方法,實例分析了javascript遍歷數(shù)組及刪除等操作的相關技巧,需要的朋友可以參考下2015-03-03

