时间:2019-05-06 来源:小程序工厂
***:
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
端***:
inde.xml文件:
清除
index.wxss文件如下: .flex { display: -webkit-flex; display: flex; } .flex-1 { flex: 1; } .my-box{ border-top: 1px solid #d8d8d8; border-bottom: 1px solid #d8d8d8; padding: 30rpx; } index.js文件如下: const app = getApp() Page({ data: { changeValue:'', }, onLoad: function () { }, changeFmt:function(e){ console.log("失去焦点"); this.setData({ changeValue:666 }) console.log("失去焦点重设输入框的值:"+this.data.changeValue); }, clearInput:function(){ console.log("清除方法"); this.setData({ changeValue: '' }) console.log("清除输入框的值:" +this.data.changeValue); } })
微信小程序生成前台传递的参数的二维码 到底应该怎么做?##微信小程序教程 ...
端***:
.flex {
display: -webkit-flex;
display: flex;
}
.flex-1 {
flex: 1;
}
.my-box{
border-top: 1px solid #d8d8d8;
border-bottom: 1px solid #d8d8d8;
padding: 30rpx;
}
const app = getApp()
Page({
data: {
changeValue:'',
},
onLoad: function () {
},
changeFmt:function(e){
console.log("失去焦点");
this.setData({
changeValue:666
})
console.log("失去焦点重设输入框的值:"+this.data.changeValue);
},
clearInput:function(){
console.log("清除方法");
this.setData({
changeValue: ''
})
console.log("清除输入框的值:" +this.data.changeValue);
}
})
端***:
wechatide://minicode/Pb7wuhm765Zc 代码片段链接
c***:
真机和开发者工具的机制不一样,触发的顺序不一样,不能依赖事件的顺序做逻辑
建议setTimeout延后执行清除的逻辑~
[51 微信小程序]模板消息审核问题
端***:
已经解决了,谢谢