when WeChat Mini Programs shares with others on iOS, there are no pictures on the card
, but pictures can be displayed on Android
onShareAppMessage: function (res) {
var that = this;
return {
title: that.data.title,
path: "/pages/detail/detail?id=1",
imageUrl: that.data.img,
success: function (res) {
wx.showToast({
title: "",
icon: "success",
duration: 1500
})
},
fail: function (res) {
wx.showToast({
title: "",
icon: "none",
duration: 1500
})
}
}
}