#yyds干货盘点# 织梦微信分享开发

【#yyds干货盘点# 织梦微信分享开发】一年好景君须记,最是橙黄橘绿时。这篇文章主要讲述#yyds干货盘点# 织梦微信分享开发相关的知识,希望能为你提供帮助。
当你网站需要微信分享的时候,你很多时候都是分享出去都是直接带着链接且没有图片,这个时候都很难看。

#yyds干货盘点# 织梦微信分享开发

文章图片
timestamp = ;
noncestr = ;
signature = ;
url = ;
var is_debug = dede:global.wx_appdebug/;
is_debug = parseInt(is_debug);
is_debug = is_debug==1 ? true : false;
$(function()
$.ajaxSettings.async = false; //重要:开启同步
url = window.location.href.split(#)[0];
//请求第二步添加的php文件获取timestamp、noncestr、signature等信息
$.getJSON("你的网站/plus/weixin_share.php",url:url,function(data)
if (data.errmsg)
alert(微信分享配置错误:+data.errmsg);

timestamp = data.timestamp;
noncestr = data.noncestr;
signature = data.signature;
);
wx.config(
debug: is_debug,
appId: dede:global.ws_appid/,//填写你的appid
timestamp: timestamp,
nonceStr: noncestr,
signature: signature,
jsApiList: [
checkJsApi,
onMenuShareTimeline,
onMenuShareAppMessage,
onMenuShareQQ,
onMenuShareWeibo,
onMenuShareQZone
]
);
wx.ready(function ()
//获取“分享给朋友”按钮点击状态及自定义分享内容接口
url = window.location.href.split(#)[0];
wx.onMenuShareAppMessage(
title: "dede:field.title/",
desc: "dede:field.description function=html2text(@me)/",
link: url,
imgUrl: dede:global.cfg_basehost/dede:field.litpic/,
trigger: function (res)
,
success: function (res)
,
cancel: function (res)
,
fail: function (res)

);
//获取“分享到朋友圈”按钮点击状态及自定义分享内容接口
wx.onMenuShareTimeline(
title: dede:field.title/, // 分享标题
desc: "dede:field.description function=html2text(@me)/",
link: url, // 分享链接
imgUrl: dede:global.cfg_basehost/dede:field.litpic/, // 分享图标
success: function ()
// 用户确认分享后执行的回调函数
,
cancel: function ()
// 用户取消分享后执行的回调函数

);
);
);

< /script>

2.公众号进入设置与开发-基本配置将ip白名单里加入你的服务器ip
3.进入后台,将你的dede:global.ws_appid/等信息填入即可
然后,我们的微信分享就好啦~~~








    推荐阅读