收藏
回答

小程序有没有类似vue或者mobx提供的计算属性?


小程序有没有类似vue或者mobx提供的计算属性?

比如登录的这个业务场景:

  1. 需要输入账户,且账户位数是11位

  2. 需要输入验证码,且验证码位数是4位

此时,登录的按钮才可以点击。


目前小程序里面实现是这样的:

Page({
   data: {
       phoneValue: '',
       verifyCodeValue: '',
       canLogin: false,
   },
   bindPhoneInput: function (e) {
       const phoneValue = e.detail.value;
       this.setData({ phoneValue, canLogin: false });
       const { verifyCodeValue } = this.data;
       if (phoneValue && verifyCodeValue && phoneValue.length == 11 && verifyCodeValue.length == 4) {
           this.setData({ canLogin: true });
       }
   },
   bindVerifyCodeInput: function (e) {
       const verifyCodeValue = e.detail.value;
       this.setData({ verifyCodeValue, canLogin: false })
       const { phoneValue } = this.data;
       if (phoneValue && verifyCodeValue && phoneValue.length == 11 && verifyCodeValue.length == 4) {
           this.setData({ canLogin: true });
       }
   }
})


这样的代价是需要在需要组合属性判断的地方,全部都维护一次canLogin来渲染页面,组合属性越多的话,代码维护就越麻烦,且非常不优雅。



有没有类似vue里面的computed,或者是mobx里面的computed这种计算属性的方式来应对这种业务需求呢?

最后一次编辑于  2018-01-31
回答关注问题邀请回答
收藏

10 个回答

登录 后发表内容