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

WeChat Development Share Moments or Friend Codes

黄舟
黄舟Original
2016-12-30 10:33:312494browse

<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>

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 (www.php.cn)!


Statement:
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