美文网首页
vue 中 || 与 &&的用法

vue 中 || 与 &&的用法

作者: JX灬君 | 来源:发表于2021-06-30 11:15 被阅读0次

    && 表示为真时 执行
    || 表示为假时 执行

    date{
      autoAdd : false,
      doJob: false
    }
    methods:{
      xxx(){
        // 1.如果autoAdd 为 true真时,则将doJob 设置为true
        this.autoAdd && (this.doJob= true);
      
         // 2.如果autoAdd 为 false假时,则将doJob 设置为true
        this.autoAdd || (this.doJob= true);
      }
    }
    
    

    相关文章

      网友评论

          本文标题:vue 中 || 与 &&的用法

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