我这么设置是可以的 onShareAppMessage: function (res) { console.log('onShareAppMessage is called:' + JSON.stringify(res)) let that = this; if (res.from === 'button') { // 来自页面内转发按钮 console.log(res.target) } console.log('title is :' + JSON.stringify(that.data.formTitle)) return { title: that.data.formTitle, path: '/pages/question/question?formKey=' + that.data.formKey, imageUrl: 'http://baidu.com//00sf-jrfw/92cc227532d17e56e07902b254dfad10/c24f8b8f2476441d818b1e0b0a4855f5.jpg' } },
onShareAppMessage的自定义 imageUrl 调用本地图片无效?图片路径是正确的,也可以转发,但是就是调用不了本地图片,每次都是自动截图。 我一开始是调用云中的图片,没成功,后来下载放到本地,还是无法调用。 // 弹出分享 onShareAppMessage: function (res) { return { title: '转发', path: '/pages/home/home', imageUrl: '../../images/home/kitchen_home.png', //不设置则默认为当前页面的截图 success: function (res) { console.log('成功', res) }, } }
10-01