h5 java实现微信分享_h5+分享到微信、朋友圈代码示例

本文介绍如何在H5中使用Java实现微信分享功能,包括分享到微信好友和朋友圈的代码示例,以及处理分享过程中的授权、图片大小等问题。
摘要由CSDN通过智能技术生成

(function(window) {var Share={};

Share.info={

id:'',

name:'',

head_image:"_www/images/icon/A/144.png",

introduce:''};/**

* 更新分享服务*/

var shares = null;functiongetSerivces() {

plus.share.getServices(function(s) {

shares={};for (var i ins) {var t =s[i];

shares[t.id]=t;

}

},function(e) {

console.log("获取分享服务列表失败:" +e.message);

});

};functionshareAction(id, ex) {var s = null;if (!id || !(s =shares[id])) {

console.log("无效的分享服务!");return;

}if(s.authenticated) {

console.log("---已授权---");

shareMessage(s, ex);

}else{

console.log("---未授权---");//TODO 授权无法回调,有bug

s.authorize(function() {

console.log('授权成功...')

shareMessage(s, ex);

},function(e) {

console.log("认证授权失败:" + e.code + " - " +e.message);

});

}

};var sharecount = 0;/**

* 发送分享消息

* @param*/

functionshareMessage(s, ex) {

plus.nativeUI.showWaiting();

setTimeout(plus.nativeUI.closeWaiting,5000);//TODO 5秒后自动关闭等待,否则如果用户分享出去后选择‘留在微信’,再手动回到app的时候,waiting无法关闭

var msg ={

extra: {

scene: ex

}

};

msg.href= "分享的网址" + "share?hid=" +Share.info.id;

msg.title= "我在xxxx等你——" +Share.info._name;

msg.content=Share.info.introduce;//取本地图片

var img = plus.io.convertAbsoluteFileSystem(Share.info.head_image.replace('file://', ''));

console.log(img);

msg.thumbs=[img];if (sharecount > 0) {//如果本地图片过大,导致分享失败,递归时重新分享获取默认图片

msg.thumbs = ["_www/images/icon/A/144.png"];

}

console.log(JSON.stringify(msg));

s.send(msg,function() {

plus.nativeUI.closeWaiting();var strtmp = "分享到\"" + s.description + "\"成功! ";

console.log(strtmp);

plus.nativeUI.toast(strtmp, {

verticalAlign:'center'});

sharecount= 0;

},function(e) {

plus.nativeUI.closeWaiting();if (e.code == -2) {

plus.nativeUI.toast('已取消分享', {

verticalAlign:'center'});

sharecount= 0;

}else if (e.code == -3 || e.code == -8) {

console.log(e.code);if (++sharecount < 2) {//TODO 分享失败可能是图片过大的问题,递归取默认图片重新分享

shareMessage(s, ex);

}else{

sharecount= 0;

plus.nativeUI.toast('分享失败', {

verticalAlign:'center'});

}

}else{

console.error('分享失败:'+JSON.stringify(e))

}

console.log("分享到\"" + s.description + "\"失败: " + e.code + " - " +e.message);

});

};functionshare() {

bhref= true;var ids =[{

id:"weixin",

ex:"WXSceneSession"}, {

id:"weixin",

ex:"WXSceneTimeline"}],

bts=[{

title:"发送给微信好友"}, {

title:"分享到微信朋友圈"}];

plus.nativeUI.actionSheet({

cancel:"取消",

buttons: bts

},function(e) {var i =e.index;if (i > 0) {

shareAction(ids[i- 1].id, ids[i - 1].ex);

}

}

);

};

Share.share=share;

window.Share=Share;

mui.plusReady(function() {

getSerivces();

});

})(window)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值