vue 中 || 与 &&的用法

2021-06-30  本文已影响0人  JX灬君

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

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);
  }
}

上一篇下一篇

猜你喜欢

热点阅读