javascript判断json数据是否包含某个key
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
javascript判断json数据是否包含某个key,有以下几种形式写法;
第一种
user_json={
"areaId": "1",
"name": "lisha"
}
if (user_json.hasOwnProperty('name')==true) {
console.log('json存在name这个key')
} else {
console.log('key不存在');
}
第二种
user_json={
"areaId": "1",
"name": "lisha"
}
//不包含,如果【不包含】则返回true,包含则返回false
console.log(!("user" in user_json));
//包含 如果【包含】则返回true,不包含则返回false
console.log(('name' in user_json));
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)