在iOS 12.2中,Apple默认情况下禁止访问设备方向数据.必须立即手动启用(-__-),如here所述.
事实是,即使在设置中启用了“运动和方向访问”,当我尝试在deviceorientation事件上设置侦听器时,我仍在Safari调试器上收到此警告消息:
function onDeviceOrientationChange (e) {
console.log(e)
}
window.addEventListener("deviceorientation",onDeviceOrientationChange,false);
// ---> Blocked attempt to add a device motion or orientation listener because the browsing context is not secure.
我正在开发webpack dev server.如何像以前一样摆脱此块并访问设备方向数据?
最佳答案
我最近有同样的问题.原来,您需要启用HTTPS才能访问此信息.一旦启用HTTPS,它就可以正常工作.
原文链接:https://www.f2er.com/js/531283.html