关于微信小程序,input框的值无法输入到e.detail.value

一个小错误:

在input框输入的时候,把绑定事件写成了bindtap,所以一直无法将值输入到e.detail.value,所以一直提示错误,真傻呀

wxml


    验证码
     
    获取验证码

js

data: {
        phone:"",
        code:""
    },
  bindPhone:function(e){
        console.log(e)
        this.setData({"phone":e.detail.value})
        console.info(this.data.phone)
        
    },

结果:

关于微信小程序,input框的值无法输入到e.detail.value_第1张图片

 

你可能感兴趣的:(微信小程序,小程序)