小程序设置button按钮分享页面,设置回调函数,返回值imageUrl设置的是和小程序一起打包的图片,有时调用分享按钮图片会加载失败,取得是当前页面。后来我换成静态服务器的图片链接,虽然失败率低了,但还是会失效,有人知道是什么原因吗?code:
wxml:
<button open-type=“share” >
<image src=“按钮图片的链接” class=“share”></image>
</button>
js:
onShareAppMessage: function(res) {
var _this = this;
var userId = _this.data.resultId;
return {
title: ‘标题’,
path: '页面路径‘,
imageUrl:’/images/图片链接.png’ //本地图片有时打开会失败,目前不清楚原因
}
},
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)