2022-03-19 工作记录--Wechat applet-Toast和this.setData的回调函数

Toastthis.setData的回调函数

1、Toast的回调函数

在这里插入图片描述

Toast({
    
    
   type: 'success',
   message: res.msg,
   onClose: () => {
    
     // 回调函数 onClose
      this.setData({
    
    
         textareaValue: '',
      })
   },
});

2、this.setData的回调函数

在这里插入图片描述

this.setData(
{
    
    
  attendance_detail: res.data,
},
()=>{
    
     // 回调函数
  this.reGetData(res.data.data);
}
)

猜你喜欢

转载自blog.csdn.net/weixin_48850734/article/details/123678578
今日推荐