谷歌地图 API 传递 key=notsupplied

发布于 2024-12-01 18:02:22 字数 542 浏览 0 评论 0原文

我们遇到了谷歌地图不适用于我们网站的问题。代码如下所示:

$.ajax({
    type: "GET",
    url: "http://www.google.com/jsapi?key=<c:out value='${mapsApiKey}'/>",
    dataType: "script",
    success: function () {
    google.load("maps", "2", {callback: function () {
        doStuff();
     }
}

当 google.load("maps", "2" 运行时,会生成一个没有 api 密钥的请求:

/maps?file=googleapi&key=notsupplied&v=2&callback=google.loader .callbacks.maps&async=2

它的目的是创建一个包含 apikey 的请求,而不是提供有关

为什么未将密钥添加到的任何帮助 。请求会很好。

We have a issue where google maps is not working for our website. The code is something like below:

$.ajax({
    type: "GET",
    url: "http://www.google.com/jsapi?key=<c:out value='${mapsApiKey}'/>",
    dataType: "script",
    success: function () {
    google.load("maps", "2", {callback: function () {
        doStuff();
     }
}

When the google.load("maps", "2" runs a request is generated without the api key:

/maps?file=googleapi&key=notsupplied&v=2&callback=google.loader.callbacks.maps&async=2

It is meant to create a request with the apikey in it, instead it is putting notsupplied.

Any help on why the key isn't added to the request would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文