小程序
小游戏
企业微信
微信支付
扫描小程序码分享
怎么实现点击分享后微信自动弹出好友列表,然后把小程序分享给好友?
8 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<button open-type="share" /> onShareAppMessage() { return { title: 'xxxx', path: 'xxx', imageUrl: 'xxx' } }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
button {
background-color: transparent;
padding: 0;
margin: 0;
position: static;
border: 0;
border-radius: 0;
color: transparent;
}
button::after {
content: '';
width: 0;
height: 0;
-webkit-transform:scale(1);
transform:scale(1);
display: none;
background: transparent;
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html#%E4%BD%BF%E7%94%A8%E6%8C%87%E5%BC%95
微信官方开发文档有写的,自己找找看
button按钮,设置open-type ="share"
属于是典型的不看文档
https://developers.weixin.qq.com/miniprogram/dev/component/button.html
文档有写,
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<button open-type="share" /> onShareAppMessage() { return { title: 'xxxx', path: 'xxx', imageUrl: 'xxx' } }
app.wxss加上
button {
background-color: transparent;
padding: 0;
margin: 0;
position: static;
border: 0;
border-radius: 0;
color: transparent;
}
button::after {
content: '';
width: 0;
height: 0;
-webkit-transform:scale(1);
transform:scale(1);
display: none;
background: transparent;
}
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html#%E4%BD%BF%E7%94%A8%E6%8C%87%E5%BC%95
微信官方开发文档有写的,自己找找看
button按钮,设置open-type ="share"
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html#%E4%BD%BF%E7%94%A8%E6%8C%87%E5%BC%95
属于是典型的不看文档
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html#%E4%BD%BF%E7%94%A8%E6%8C%87%E5%BC%95
https://developers.weixin.qq.com/miniprogram/dev/component/button.html
文档有写,