readme.md 1.1 KB
Newer Older
L
linju 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
# uni-share
例子
import uniShare from 'uni_modules/uni-share/js_sdk/uni-share.js';
uniShare({
	menus:[
		{
			"img": "/static/sharemenu/wechatfriend.png",
			"text": "微信好友",
			"share": {
				"provider": "weixin",
				"scene": "WXSceneSession"
			}
		},
		{
			"img": "/static/sharemenu/wechatmoments.png",
			"text": "微信朋友圈",
			"share": {
				"provider": "weixin",
				"scene": "WXSceneSession"
			}
		},
		{
			"img": "/static/sharemenu/weibo.png",
			"text": "微博",
			"share": {
				"provider": "sinaweibo"
			}
		},
		{
			"img": "/static/sharemenu/qq.png",
			"text": "QQ",
			"share": {
				"provider": "qq"
			}
		},
		{
			"img": "/static/sharemenu/copyurl.png",
			"text": "复制",
			"share": "copyurl"
		},
		{
			"img": "/static/sharemenu/more.png",
			"text": "更多",
			"share": "shareSystem"
		}
	],
	cancelText:"取消分享",
	content:{
		type: 0,
		href: "https://uniapp.dcloud.io/api/plugins/share?id=share",
		title: "主标题",
		summary: "分享内容的摘要",
		imageUrl: "https://uniapp.dcloud.io/api/plugins/share?id=share",
	}
},e=>{	//callback
	console.log(e);
})