[uniapp] 爬坑 ios webview中使用麦克风 getUserMedia
摘要:webview中无法访问ios的麦克风,显示找不到对象mediaDevices 但是页面进行一次跳转后就可以获取到mediaDevices了。 可以在mounted中 if(navigator.userAgent.match(/iPad|iPhone/) && !window.location.hr
阅读全文
uniapp webview多次点击后,一次性关闭。
摘要:监听返回事件,在返回的生命周期函数onBackPress中获取webview对象,并关闭 返回false代表回退,返回true不回退。 具体参考官网:https://uniapp.dcloud.net.cn/tutorial/page.html#lifecycle onBackPress(optio
阅读全文
uniapp动态禁止下拉刷新
摘要:// 禁止下拉刷新 isPullDown(isPull) { //获取当前 Webview 窗口对象 const pages = getCurrentPages(); const page = pages[pages.length - 1]; const currentWebview = page.
阅读全文