html 导航器“用户拒绝地理位置" [英] html navigator "User denied Geolocation"

查看:23
本文介绍了html 导航器“用户拒绝地理位置"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在使用 window.navigator 时遇到问题,每当我将以下代码作为本地 html 文件运行时,我都会收到错误代码 1用户拒绝地理位置":

I have an issue with window.navigator, I'm getting error code 1, "User denied Geolocation" whenever I run the following code as a local html file:

navigator.geolocation.getCurrentPosition(function(position) {
        console.log(position);
    }, function(positionError) {
        console.log(positionError);
    });

输出来自误差函数,positionError 包含:

The output is coming from the error function, positionError contains:

code: 1
message: "User denied Geolocation"

如果包含的 html 是从某个服务器提供的,则不会发生这种情况.

This does not happen if the containing html is served from some server.

这是预期的吗?有没有办法从本地 html 使用导航器?我正在尝试编写一些移动应用程序,但也尽可能避免使用网络.

Is this expected? Is there some way to use navigator from a local html? I am trying to write some mobile app, but am also trying to avoid network whenever possible.

谢谢.

推荐答案

如果你用的是chrome,请看下面的答案:

If you are using chrome, please have a look at the answer below:

Chrome 中的 HTML 5 地理位置提示

这似乎是 file 协议的安全限制.看起来您需要从服务器本地托管它.

It appears this is a security restriction for the file protocol. Looks like you are going to need to host it locally from a server.

这篇关于html 导航器“用户拒绝地理位置"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆