我正在使用 HTML5 地理位置功能。我的代码在“本地主机”中运行良好,但在“子域”中出现问题。我的代码如下:
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition, showError);
} else {
console.log("Geolocation is not supported by this browser.");
}
- 错误消息是:“地理定位请求只能在安全上下文中完成。”
- 我的本地主机网址:' http://localhost/voice-of-mankind/ '
- 我的子域网址:' http: //vom.local.com/ '