记录几个小程序的分享相关的问题吧,之后再补充
1、小程序分享的图片比例是5:4
2、小程序实现分享的方式有两种
(1)使用button实现 open-type=share
(2)直接使用微信小程序的转发功能
3.触发函数
onShareAppMessage: function (res) {
if (res.from === 'button') {
}
return {
title: '',
path: '',
imageUrl:
success: function (res) {
console.log('成功', res)
}
}
}
本文介绍了小程序分享时图片比例的要求及两种实现方式:一是通过button组件的open-type属性设置为'share';二是直接调用微信小程序的转发功能。此外,还提供了触发函数onShareAppMessage的具体用法。
3824

被折叠的 条评论
为什么被折叠?



