限制微信公眾號H5頁面的部分功能
WXShare() {
var t, n, s, data = {};
data.url = location.href.split('#')[0];
$axios.post(`API`, $qs.stringify(data)).then(res => {
t = res.data.timestamp;
n = res.data.noncestr;
s = res.data.signature;
// 檢測
wx.config({
debug: false,
appId: '公眾號appId',
timestamp: t,
nonceStr: n,
signature: s,
// 檢測是否支持當前API
jsApiList: ['checkJsApi', 'hideAllNonBaseMenuItem']
});
// 限制
wx.ready(function() {
// 限制微信分享給朋友、分享到朋友圈、收藏...
wx.hideAllNonBaseMenuItem();// 隱藏所有非基礎按鈕接口
});
}).catch(err => {
console.log(err);
});
}
注:微信公眾平台開發提供的微信自定義分享功能、同時也提供了限制微信部分能力的入口和面板。
參考鏈接: 微信網頁開發 —— JS-SDK文檔
