小程序
小游戏
企业微信
微信支付
扫描小程序码分享
同一个页面分享不同的需要用户助力的资料信息,并且需要根据接口返回的助力id判断是否已经发起助力,但是使用button中的open-type='share' 中绑定接口事件,发现onShareAppMessage中无法获取接口返回的id,查询资料onShareAppMessage的触发时间是最快的,所以无法获取。请问有什么办法解决吗??
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<button open-type='share' data-type="{{type}}"></button>
yourFunc: function(e){
// type用于区分获取不同的用户助力的资料信息
var type = e.target.dataset.type
return new Promise((resolve, reject)=>{
wx.request({
//...
success: function(res){
resolve(res.data)
},
fail: function(res){
reject(res)
}
})
onShareAppMessage: async function(e){
var info = await this.yourFunc(e)
return {
title:'...',
imageUrl:'...',
path: '/pages/xxxx/xxx?id='+info.id
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
button 绑定事件fun,fun中将值放入this.formid中;onShareAppMessage 中
return { title:'...',imageUrl:'...',path: '/pages/customer/index?formid='+this.formid}fun 中不能去请求然后设置给this,需要提前获取
path: '/pages/customer/index?formid='+this.formid
fun 中不能去请求然后设置给this,需要提前获取
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<button open-type='share' data-type="{{type}}"></button>
yourFunc: function(e){
// type用于区分获取不同的用户助力的资料信息
var type = e.target.dataset.type
return new Promise((resolve, reject)=>{
wx.request({
//...
success: function(res){
resolve(res.data)
},
fail: function(res){
reject(res)
}
})
})
},
onShareAppMessage: async function(e){
var info = await this.yourFunc(e)
return {
title:'...',
imageUrl:'...',
path: '/pages/xxxx/xxx?id='+info.id
}
}
button 绑定事件fun,fun中将值放入this.formid中;onShareAppMessage 中