微信小程序分享功能imageUrl带随机分享图片

//此为微信小程序分享
onShareAppMessage: function(options) {
//先写一个数组,
var shareimg =[
"https://desk-fd.zol-img.com.cn/t_s960x600c5/g5/M00/01/01/ChMkJ1mhRcaISLHUAAaIAQtVJyoAAf_UAJK9e8ABogZ224.jpg",
"https://desk-fd.zol-img.com.cn/t_s960x600c5/g5/M00/01/01/ChMkJ1mhRciIK04QAAPSUiTmb7UAAf_UAJRfggAA9Jq257.jpg",
"https://desk-fd.zol-img.com.cn/t_s960x600c5/g5/M00/01/01/ChMkJ1mhRciIGHuyAAIISdSwzIYAAf_UAJ1MKkAAghh731.jpg"
]
//在写随机数
 var randomImg = shareimg [Math.floor(Math.random() * shareimg .length)];
//最后就直接可以在分享中调用
return{
title:"", //此处为标题,
path:"", //此处为路径,
imageUrl:randomImg, //此处就是写的随机分享图片,
success:function(res){
//这里为分享成功后的回调函数,
},
fail:function(res){
//此处为转发失败后的回调函数
}
}

}

你可能感兴趣的:(微信小程序)