幼敏悟过人,读书辄成诵。这篇文章主要讲述uniapp分享功能-系统分享相关的知识,希望能为你提供帮助。
uni-app分享
uniapp官网地址:https://uniapp.dcloud.io/api/plugins/share?id=sharewithsystem
调用系统分享组件发送分享消息,不需要配置分享SDK
当中出现了图片,图片的优先级会大于文字。
uni.shareWithSystem({ type:"text", summary: ‘补充文字‘, href: ‘https://www.baidu.com/‘, // imageUrl:"../../static/logo.png", success(){ console.log(‘分享成功‘); // 分享完成,请注意此时不一定是成功分享 }, fail(){ console.log(‘分享失败‘); // 分享失败 } })
多个图片分享
当中出现了图片,图片的优先级会大于文字。
不需要配置分享SDK
uniapp官网地址:https://uniapp.dcloud.io/api/plugins/share?id=plussharesendwithsystem
html5+API:http://www.html5plus.org/doc/zh_cn/share.html#plus.share.ShareMessage
let msg={ type:‘image‘, pictures:[‘../../static/logo.png‘] } plus.share.sendWithSystem(msg, function(){ console.log(‘分享成功‘); }, function(e){ console.log(‘分享失败:‘+JSON.stringify(e)); });
【uniapp分享功能-系统分享】
推荐阅读
- gradle assemble productflavor android
- mybatisGenerator生成mapper和po
- appium报错--版本不匹配
- appium--adb版本过低
- 使用appium在android7.0真机上测试程序时报错command failed shell “ps ‘uiautomator’”的解决方式
- 通用mapper
- 飞凌i.MX6Q开发板Android系统下可以实现APP签名啦!速来
- macOS(无法打开“XXXX”,因为Apple无法检查其是否包含恶意软件。的解决办法)
- Android 之ANR