码迷,mamicode.com
首页 > 移动开发 > 详细

uniapp分享功能-系统分享

时间:2020-05-27 15:47:19      阅读:1147      评论:0      收藏:0      [点我收藏+]

标签:sdk   cloud   UNC   send   注意   org   summary   har   OLE   

 

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分享功能-系统分享

标签:sdk   cloud   UNC   send   注意   org   summary   har   OLE   

原文地址:https://www.cnblogs.com/1748sb/p/12972983.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!