onShareAppMessage的自定义 imageUrl 调用本地图片无效?
图片路径是正确的,也可以转发,但是就是调用不了本地图片,每次都是自动截图。 我一开始是调用云中的图片,没成功,后来下载放到本地,还是无法调用。 // 弹出分享
onShareAppMessage: function (res) {
return {
title: '转发',
path: '/pages/home/home',
imageUrl: '../../images/home/kitchen_home.png',
//不设置则默认为当前页面的截图
success: function (res) {
console.log('成功', res)
},
}
}