该API在微信小程序中可以正确使用,但是当小程序在企业微信中打开的时候, 就失效,不能发送给我的企业微信好友。
wx.downloadFile({
url: wxacodeUrl,
success: (res) => {
if (res.statusCode === 200) {
wx.showShareImageMenu({
path: res.tempFilePath,
fail: (err) => {
console.error('分享图片失败:', err);
wx.showToast({ title: '分享失败', icon: 'none' });
}
});
} else {
wx.showToast({ title: '下载失败', icon: 'none' });
}
},
fail: (err) => {
console.error('下载小程序码失败:', err);
wx.showToast({ title: '下载失败', icon: 'none' });
}
});

可参考:https://developer.work.weixin.qq.com/document/path/91503