美文网首页
判断对象中是否有某个属性

判断对象中是否有某个属性

作者: 执念_6afc | 来源:发表于2019-11-20 20:16 被阅读0次

    vue中js用来判断对象中是否有某个属性的方法可以直接使用

    <p v-if="article.comment.hasOwnProperty('count') && article.comment.count == null">0 Comments</p>
    

    判断comment中是否含有count属性 .hasOwnProperty

    相关文章

      网友评论

          本文标题:判断对象中是否有某个属性

          本文链接:https://www.haomeiwen.com/subject/vqjaictx.html