gpt4 book ai didi

mobile-safari - 通过 Javascript(例如用户代理)检测 Apple Watch

转载 作者:行者123 更新时间:2023-12-04 17:42:06 28 4
gpt4 key购买 nike

我正在尝试通过 Javascript 检测 Apple Watch。但是,与我的 iPhone 6 相比,大小/宽度和用户代理没有给出任何明确的线索。这是 html:

<!DOCTYPE html>
<html lang="en">

<head>
<title>Watch Test</title>
</head>

<body>
<div id="width">width</div>
<div id="height">height</div>
<div id="user_agent">user_agent</div>

<script type="text/javascript">
document.getElementById("width").innerHTML = "Width is '" + screen.width + "'";
document.getElementById("height").innerHTML = "Height is '" + screen.height + "'";
document.getElementById("user_agent").innerHTML = "User Agent is '" + navigator.userAgent + "'";
</script>
</body>
</html>

我运行 iOS 12.1.2 的 iPhone 6 显示:

Width is '320'
Height is '568'
User Agent is 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'

我的运行 WatchOS 5.1.2 的 Apple Watch 显示:

Width is '320'
Height is '568'
User Agent is 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1'

唯一的区别是将来会改变的版本。我还查看了 navigator.platform,但在这两种设备上都是 iPhone。

关于我如何检测 Apple Watch 的任何线索?

最佳答案

我在这里遇到了同样的问题,并找到了一个奇怪的(可能不是面向 future 的)解决方法。您需要检查它是否支持通过 HTML5 音频播放 AAC 音频。至于现在,它不支持任何音频,而所有 iPhone 都支持。

  let a = document.createElement('audio');
let supportsAAC = !!(a.canPlayType && a.canPlayType('audio/mp4; codecs="mp4a.40.2"').replace(/no/, ''));
let is_iphone = ['iPhone Simulator','iPhone'].includes(navigator.platform)
return is_iphone && !supportsAAC

它肯定会在未来发生变化,但我想现在还可以(2 年后仍然如此)。此外,可能还有其他方法可以检测到这一点,因为它似乎也不支持视频。

关于mobile-safari - 通过 Javascript(例如用户代理)检测 Apple Watch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54015166/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com