如何判断H5是在小程序内运行
官方文档
https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html
wx.miniProgram.getEnv
评论
可以说这种官方文档明确给出的方案,在实际代码中,也建议通过该方式来判断是否微信小程序webview
代码如下所示
1
Document
wx.miniProgram.getEnv(function(res) {
console.log(res.miniprogram)
document.getElementById('myDiv').innerHTML = JSON.stringify(res);
})
1
1
1
1
参考
1)同一个H5,怎么区分是运行在公众号还是在小程序内?? - 微信开放社区 https://developers.weixin.qq.com/community/develop/doc/0000428a72c020b0f96b3a98351800
1