我在本地計算機上使用地理位置在Chrome上使用HTTP進行本地運行。但是,這不起作用,因爲我在HTTP上運行而不是HTTPS。「不安全的來源不安全的來源」標誌在Chrome上不起作用
在控制檯,它說:
getCurrentPosition() and watchPosition() no longer work on insecure origins.
To use this feature, you should consider switching your application to a
secure origin, such as HTTPS. See https://sites.google.com/a/chromium.org/dev/Home/chromium-security/deprecating-powerful-features-on-insecure-origins
for more details.
Accoriding到Deprecating Powerful Features on Insecure Origins其說使用--unsafely-treat-insecure-origin-as-secure="http://example.com"
標誌啓動鉻。我跑的命令類似於:
chrome.exe --unsafely-treat-insecure-origin-as-secure="http://hello.app"
但是,仍然出現相同的錯誤消息。
我該如何解決這個問題。
不是爲我工作。 –
這在Chrome 62之前是必需的,不再需要。 – EricLaw