Authored by 郭成尧

'wx-share'

... ... @@ -6,83 +6,83 @@
var $ = require('jquery');
// module.exports = function() {
// var _weChatInterface = '/life/getSignPackage';
// $.getJSON(_weChatInterface + '?pageurl=' +
// encodeURIComponent(location.href.split('#')[0]) + '&callback=?', function (json) {
// var _appId, _timestamp, _nonceStr, _signature;
module.exports = function() {
var _weChatInterface = '/life/getSignPackage';
$.getJSON(_weChatInterface + '?pageurl=' +
encodeURIComponent(location.href.split('#')[0]) + '&callback=?', function (json) {
var _appId, _timestamp, _nonceStr, _signature;
// if (!wx) {
// return;
// }
if (!wx) {
return;
}
// if (json !== undefined && json !== '') {
// _appId = json.appId.toString();
// _timestamp = json.timestamp;
// _nonceStr = json.nonceStr.toString();
// _signature = json.signature.toString();
if (json !== undefined && json !== '') {
_appId = json.appId.toString();
_timestamp = json.timestamp;
_nonceStr = json.nonceStr.toString();
_signature = json.signature.toString();
// wx.config({
// debug: false,
// appId: _appId,
// timestamp: _timestamp,
// nonceStr: _nonceStr,
// signature: _signature,
// jsApiList: [
// 'checkJsApi',
// 'onMenuShareTimeline',
// 'onMenuShareAppMessage',
// 'onMenuShareQQ',
// 'onMenuShareWeibo',
// 'hideMenuItems',
// 'showMenuItems',
// 'hideAllNonBaseMenuItem',
// 'showAllNonBaseMenuItem',
// 'translateVoice',
// 'startRecord',
// 'stopRecord',
// 'onRecordEnd',
// 'playVoice',
// 'pauseVoice',
// 'stopVoice',
// 'uploadVoice',
// 'downloadVoice',
// 'chooseImage',
// 'previewImage',
// 'uploadImage',
// 'downloadImage',
// 'getNetworkType',
// 'openLocation',
// 'getLocation',
// 'hideOptionMenu',
// 'showOptionMenu',
// 'closeWindow',
// 'scanQRCode',
// 'chooseWXPay',
// 'openProductSpecificView',
// 'addCard',
// 'chooseCard',
// 'openCard'
// ]
// });
// }
// });
wx.config({
debug: false,
appId: _appId,
timestamp: _timestamp,
nonceStr: _nonceStr,
signature: _signature,
jsApiList: [
'checkJsApi',
'onMenuShareTimeline',
'onMenuShareAppMessage',
'onMenuShareQQ',
'onMenuShareWeibo',
'hideMenuItems',
'showMenuItems',
'hideAllNonBaseMenuItem',
'showAllNonBaseMenuItem',
'translateVoice',
'startRecord',
'stopRecord',
'onRecordEnd',
'playVoice',
'pauseVoice',
'stopVoice',
'uploadVoice',
'downloadVoice',
'chooseImage',
'previewImage',
'uploadImage',
'downloadImage',
'getNetworkType',
'openLocation',
'getLocation',
'hideOptionMenu',
'showOptionMenu',
'closeWindow',
'scanQRCode',
'chooseWXPay',
'openProductSpecificView',
'addCard',
'chooseCard',
'openCard'
]
});
}
});
// wx.ready(function () {
// var shareTitle = $('#shareTitle').val();
// var shareImg = $('#shareImg').val();
// var shareDesc = $('#shareDesc').val();
// var shareLink = $('#shareLink').val();
// var shareData = {
// title: shareTitle,
// desc: shareDesc,
// imgUrl: shareImg,
// link: shareLink
// };
wx.ready(function () {
var shareTitle = $('#shareTitle').val();
var shareImg = $('#shareImg').val();
var shareDesc = $('#shareDesc').val();
var shareLink = $('#shareLink').val();
var shareData = {
title: shareTitle,
desc: shareDesc,
imgUrl: shareImg,
link: shareLink
};
// wx.onMenuShareAppMessage(shareData);
// wx.onMenuShareTimeline(shareData);
// wx.onMenuShareQQ(shareData);
// wx.onMenuShareWeibo(shareData);
// });
// };
wx.onMenuShareAppMessage(shareData);
wx.onMenuShareTimeline(shareData);
wx.onMenuShareQQ(shareData);
wx.onMenuShareWeibo(shareData);
});
};
... ...