谷歌地图 API 传递 key=notsupplied
我们遇到了谷歌地图不适用于我们网站的问题。代码如下所示:
$.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论