其他分享
首页 > 其他分享> > 关于return的使用问题

关于return的使用问题

作者:互联网

  废话不多少,看代码体会

不使用return

        add() {
          if (this.brandName === '') {
            alert('未填写品牌名称')
          } else {

            // 创建模拟数据
            const obj = {
              id: 4,
              brand: this.brandName,
              status: false,
              buildTime: new Date()
            }
            // 添加数据
            this.list.push(obj)

            // 收尾处理
            this.brand = ""
            this.nextid++
          }
        }

使用return

        // 即阻止默认提交行为后,触发add方法
        add() {
          if (this.brandName === '') {
            return alert('未填写品牌名称')
          }

          // 创建模拟数据
          const obj = {
            id: 4,
            brand: this.brandName,
            status: false,
            buildTime: new Date()
          }
          // 添加数据
          this.list.push(obj)

          // 收尾处理
          this.brand = ""
          this.nextid++
        }

总结

  经过对比发现:使用return后,后续代码不会有太多的约束感。推荐使用return

标签:obj,brand,add,brandName,关于,使用,return,false
来源: https://www.cnblogs.com/Lencamo/p/16293963.html