小程序提示

来源:互联网 发布:国产sql注入工具 编辑:程序博客网 时间:2024/05/20 05:54

< view>
< toast hidden=”{{hidden}}” duration=”2500” bindchange=”open” bindtap=”close”>
内容
< /toast>
< /view>
.js

Page({
data:{
hidden:false
},
open: function(){
console.log(“延时调用”);
},
close: function(){
this.setData({
hidden:true
});
console.log(“关闭弹框”);
}
})

定时器

setTimeout(() => {
that.setData({
hidden_addshop_tip: true
})
}, 2000);

原创粉丝点击