Home > WeChat Applet > WeChat Development > WeChat Development Share Moments or Friend Codes

WeChat Development Share Moments or Friend Codes

黄舟
Release: 2016-12-30 10:33:31
Original
2517 people have browsed it

<script type="text/javascript">

document.addEventListener(&#39;WeixinJSBridgeReady&#39;, function onBridgeReady() {

window.shareData = {

"imgUrl": "__APP__/images/jp_1.jpg",

"timeLineLink": "http://dc.exweixin.com/index.php?app=RedPacket&mod=Index&act=robSmallRed&fatherid={$fatherid}",//好友

"sendFriendLink": "http://dc.exweixin.com/index.php?app=RedPacket&mod=Index&act=robSmallRed&fatherid={$fatherid}",//朋友圈

"weiboLink": "",

"tTitle": "标题!",

"tContent": "内容",

"fTitle": "!",

"fContent": "!",

"wContent": ""

};

// 发送给好友

WeixinJSBridge.on(&#39;menu:share:appmessage&#39;, function (argv) {

WeixinJSBridge.invoke(&#39;sendAppMessage&#39;, {

"img_url": window.shareData.imgUrl,

"img_width": "640",

"img_height": "640",

"link": window.shareData.sendFriendLink,

"desc": window.shareData.fContent,

"title": window.shareData.fTitle

}, function (res) {

_report(&#39;send_msg&#39;, res.err_msg);

})

});

// 分享到朋友圈

WeixinJSBridge.on(&#39;menu:share:timeline&#39;, function (argv) {

WeixinJSBridge.invoke(&#39;shareTimeline&#39;, {

"img_url": window.shareData.imgUrl,

"img_width": "640",

"img_height": "640",

"link": window.shareData.timeLineLink,

"desc": window.shareData.tContent,

"title": window.shareData.tTitle

}, function (res) {

_report(&#39;timeline&#39;, res.err_msg);

});

});

// 分享到微博

WeixinJSBridge.on(&#39;menu:share:weibo&#39;, function (argv) {

WeixinJSBridge.invoke(&#39;shareWeibo&#39;, {

"content": window.shareData.wContent,

"url": window.shareData.weiboLink,

}, function (res) {

_report(&#39;weibo&#39;, res.err_msg);

});

});

}, false)

</script>
Copy after login

The above is the content of WeChat development to share the circle of friends or friend code. For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template