uniapp配置公众号,发送朋友圈

// 公众号分享
		wxjssdks(res) {
			// var surl = encodeURIComponent(window.location.href.split('#')[0]);
			const _this = this;
			const wx = require('@/pages/ckm_index/jweixin-module.js');
			// console.log(res)
			// let obj = {
			// 	url: surl
			// }
			// wxjssdk(obj).then(response => {
			// 	let res = response.data
			// let wxjs = JSON.parse(res.wxjs)
			// console.log(res.wxjs)
			wx.config({
				debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 
				appId: res.appId, // 和获取Ticke的必须一样------必填,公众号的唯一标识
				timestamp: res.timestamp, // 必填,生成签名的时间戳
				nonceStr: res.nonceStr, // 必填,生成签名的随机串
				signature: res.signature, // 必填,签名,见附录1
				//需要分享的列表项:发送给朋友,分享到朋友圈,分享到QQ,分享到QQ空间
				jsApiList: ["updateAppMessageShareData", "updateTimelineShareData"]
			});
			// if (res.codes === '200') {
			if (_this.subject.questionaireWxSend && _this.subject.questionaireWxSend.shareLogo.indexOf('http') < 0) {
				_this.subject.questionaireWxSend.shareLogo = baseImgUrl + _this.subject.questionaireWxSend.shareLogo
			}
			//处理验证成功的信息
			wx.ready(function() {
				//处理验证失败的信息
				wx.error(function(err) {
					console.log(err)
				});
				//分享到朋友圈
				wx.updateTimelineShareData({
					title: _this.subject.title ? _this.subject.title : '', // 分享标题
					desc: _this.subject.questionaireWxSend ? _this.subject.questionaireWxSend
						.shareDetail : '',
					link: window.location.href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
					imgUrl: _this.subject.questionaireWxSend ? _this.subject.questionaireWxSend
						.shareLogo : '', // 分享图标
					success: function(res) {
						// 用户确认分享后执行的回调函数
						// _this.shareSuccess(res);
					}
				});
				//分享给朋友
				wx.updateAppMessageShareData({
					title: _this.subject.title ? _this.subject.title : '', // 分享标题
					desc: _this.subject.questionaireWxSend ? _this.subject.questionaireWxSend
						.shareDetail : '',
					link: window.location.href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
					imgUrl: _this.subject.questionaireWxSend ? _this.subject.questionaireWxSend
						.shareLogo : '', // 分享图标
					type: "", // 分享类型,music、video或link,不填默认为link
					dataUrl: "", // 如果type是music或video,则要提供数据链接,默认为空
					success: function(res) {
						// 用户确认分享后执行的回调函数
					}
				});
			});
上一篇:Shiro那些事儿(一): Shiro初探


下一篇:观察值模式-单线程观察者