小程序通过onShareAppMessage分享成功后返回隐藏遮罩
时间: 2023-07-25 11:36:38 浏览: 153
当小程序分享成功后返回时,您可以在 `onShareAppMessage` 方法中设置 `success` 回调函数,在该函数中修改页面状态,例如隐藏遮罩。具体代码如下:
```javascript
onShareAppMessage: function(res) {
return {
title: '分享标题',
path: '分享路径',
success: function(res) {
// 分享成功后的回调函数
console.log("分享成功");
// 隐藏遮罩
that.setData({
maskHidden: true
});
},
fail: function(res) {
console.log("分享失败");
}
}
}
```
在上述代码中,`onShareAppMessage` 方法返回一个对象,其中 `success` 回调函数会在分享成功后被调用。在该函数中,您可以通过 `setData` 方法修改页面状态,例如将遮罩隐藏。请注意,上述代码中的 `that` 需要在外部定义并赋值为 `this`,以便在回调函数中使用。
阅读全文