为了账号安全,请及时绑定邮箱和手机立即绑定

如何检查json数组javascript中是否存在值

如何检查json数组javascript中是否存在值

偶然的你 2023-05-11 16:19:48
我有以下结构:_id: 'blog',    posts: [      {        _id: 'politics and economy',        name: 'politics and economy',        author: 'Mark',      },      {        _id: 'random',        name: 'random',        author: 'Michael'      }    ]我的 if 语句:if(posts.name.includes("politics"){//Doing Stuff}我怎样才能让它运行?我不知道数组的长度。
查看完整描述

5 回答

?
暮色呼如

TA贡献1853条经验 获得超9个赞

不需要知道长度,你可以使用forEach


posts.forEach(post => {

    if(post.name.includes("politics")){

        //Doing Stuff

    }

});


查看完整回答
反对 回复 2023-05-11
?
慕娘9325324

TA贡献1783条经验 获得超4个赞

您可以使用方法 some来检查其中一篇帖子是否具有该值

var name = "politics";

posts.some(singlePost => {

     return singlePost.name == name;

});


查看完整回答
反对 回复 2023-05-11
?
慕侠2389804

TA贡献1719条经验 获得超6个赞

if(posts.filter(post => post.name.includes("politics")).length > 0){

//Doing Stuff

console.log("One of posts has a name including politics")

}

 


查看完整回答
反对 回复 2023-05-11
?
萧十郎

TA贡献1815条经验 获得超13个赞

使用数组过滤方法。关联


查看完整回答
反对 回复 2023-05-11
?
RISEBY

TA贡献1856条经验 获得超5个赞

const posts = [

      {

        _id: 'politics and economy',

        name: 'politics and economy',

        author: 'Mark'

      },

      {

        _id: 'random',

        name: 'random',

        author: 'Michael'

      }

    ]


posts.forEach(post => {

if(post.name.includes("politics")){

//Do Your Stuff

console.log(post.name)

}

});

您必须遍历 posts 数组。



查看完整回答
反对 回复 2023-05-11
  • 5 回答
  • 0 关注
  • 202 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信