赞
踩
默认情况下分享是灰色的
只要重写onShareAppMessage方法就可以实现分享功能,分享有两种情况
- onShareAppMessage (res) {
- console.log(res);
- if (res.from === 'menu') { // button:来自页面内分享按钮
- return {
- title: '标题',
- path: '/pages/index/index',
- imageUrl: '/static/register/img.jpg'
- }
- }
- },
<button type="default" open-type="share">分享</button>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。