web-view使用问题?
微信小程序wx*********3c中通过web-view嵌入h5页面,h5页面里面使用 wx.onMenuShareTimeline,跳回到小程序中。
h5页面中配置了config,其中appid 是一个独立的公众号Id,现在问题是,加载h5页面加载的时候返回权限。大神给个解答啊??
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: '${appId}', // 必填,公众号的唯一标识
timestamp: '${timestamp}', // 必填,生成签名的时间戳
nonceStr: '${nonceStr}', // 必填,生成签名的随机串
signature: '${signature}',// 必填,签名
jsApiList: ['onMenuShareTimeline'] // 必填,需要使用的JS接口列表
});
wx.ready(function(res){
console.log("wx.ready")
wx.checkJsApi({
jsApiList:['onMenuShareTimeline'],
success:function(res){
alert(JSON.stringify(res));
},fail:function(res){
alert("fail"+JSON.stringify(res));
}
})
})