转发 在 测试版 开发版 没有问题 但是 在正式版 就有问题 不能执行 wx.request 请大神看一下
onShareAppMessage: function (option) {
var that=this
return {
title: '微信小程序',
desc: '微信小程序!',
path: '/pages/index/index',
success: function (res) {
var yhqid=option.target.dataset.yhqid;
//获取列表
wx.request({
url: app.globalData.url + '/my_in_coupon',
method: "post",
data: {
coupon_id: yhqid,
openid: wx.getStorageSync('openId'),
},
success: function (res) {
if (res.data.zt == 1) {
wx.showToast({
title: res.data.msg,
icon: 'success',
duration: 2000
})
} else {
wx.showToast({
title: res.data.msg,
icon: 'fail',
duration: 2000
})
}
that.onLoad();
},
})
},
}
}
微信小程序开发问题解答
本文网址:http://www.91bianli.com/weixinxiaochengxu/51937.html