写一个uniapp的h5获取微信小程序内嵌的webview页面的代码
时间: 2023-03-14 16:59:58 浏览: 175
微信小程序webview组件交互,内联h5页面并网页实现微信支付实现解析
5星 · 资源好评率100%
我的建议是使用uni.getSystemInfo()来获取微信小程序内嵌的webview页面的信息,代码如下: uni.getSystemInfo({
success: function (res) {
console.log(res.platform); // 小程序运行的平台
}
})
阅读全文