1.服务器地址:先用wx.downloadFile转为本地地址,再用 wx.showShareImageMenu进行分享
2.本地地址直接用wx.showShareImageMenu进行分享
3.需要在微信公众平台对服务器地址进行配置(downloadFile合法域名)文章来源:https://www.toymoban.com/news/detail-703513.html
wx.downloadFile({
url: this.erweimaImg,//图片服务器地址
success: (res: any) => {
wx.showShareImageMenu({
path: res.tempFilePath,//转为本地地址showShareImageMenu进行分享
success: (res: any) => {
uni.hideLoading();
this.modalShare = null;
},
fail: (err: any) => {
uni.hideLoading();
this.modalShare = null;
},
});
},
});
文章来源地址https://www.toymoban.com/news/detail-703513.html
到了这里,关于微信小程序分享图片给微信好友的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!