我正在尝试切换到动态库导入 API(从过时的脚本标签)。我根据 Apps 脚本上的 Google 电子表格中的文档制作了一个示例。作为结果,我希望在浏览器中获得 Google 地图,但在控制台中出现错误
userCodeAppPanel:2未捕获语法错误:输入意外结束userCodeAppPanel:6未捕获(承诺中)类型错误:无法在initMap(userCodeAppPanel:6:39)处读取未定义的属性(读取'importLibrary')在userCodeAppPanel:15:1
以下是 Apps 脚本的代码:
<!doctype html>
<html>
<head>
<title>Simple Map</title>
<script>
let map;
// initMap is now async
async function initMap() {
// Request libraries when needed, not in the script tag.
const { Map } = await google.maps.importLibrary("maps");
// Short namespaces can be used.
map = new Map(document.getElementById("map"), {
center: { lat: 40.72476, lng: -74.04843 },
zoom: 8,
});
}
initMap();
</script>
</head>
<body>
<div id="map"></div>
<script>(g=>{var h,a,k,p="The Google Maps JavaScript API",c="google",l="importLibrary",q="__ib__",m=document,b=window;b=b[c]||(b[c]={});var d=b.maps||(b.maps={}),r=new Set,e=new URLSearchParams,u=()=>h||(h=new Promise(async(f,n)=>{await (a=m.createElement("script"));e.set("libraries",[...r]+"");for(k in g)e.set(k.replace(/[A-Z]/g,t=>"_"+t[0].toLowerCase()),g[k]);e.set("callback",c+".maps."+q);a.src=`https://maps.${c}apis.com/maps/api/js?`+e;d[q]=f;a.onerror=()=>h=n(Error(p+" could not load."));a.nonce=m.querySelector("script[nonce]")?.nonce||"";m.head.append(a)}));d[l]?console.warn(p+" only loads once. Ignoring:",g):d[l]=(f,...n)=>r.add(f)&&u().then(()=>d[l](f,...n))})
({key: "AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg", v: "weekly"});</script>
<style>
#map {
height: 100%;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
background-color: grey;
}
</style>
</body>
</html>
但是jsfiddle中的相同代码处理没有错误(结果显示为地图)。
我认为 Apps 脚本中缺少某些内容。请帮助我理解原因并在动态库导入上运行代码
当我看到你的展示脚本时,我想起了这个问题。 https://issuetracker.google.com/issues/156139610 在当前阶段,当使用 Google Apps Script 的脚本编辑器将 Javascript 编写在 HTML 文件中时,当模板文字中包含
//
时,似乎该行用作注释行。在您的脚本中,在 a.src=`https://maps.${c}apis.com/maps/api/js?`+e
处,使用了 //
。这样,//
之后的脚本就被用作注释。我猜想这个问题可能是您当前问题的原因。
为了消除此问题,请进行如下修改。
a.src=`https://maps.${c}apis.com/maps/api/js?`+e
a.src=`https:\/\/maps.${c}apis.com/maps/api/js?`+e
当您修改Web Apps的脚本时,请将最新的脚本反映到Web Apps中。请注意这一点。
顺便说一句,你修改完上面的修改后,当再次出现错误
RefererNotAllowedMapError
时,请检查https://developers.google.com/maps/documentation/javascript/error-messages#referer-not-allowed-map -错误。
当前加载 Maps JavaScript API 的 URL 尚未添加到允许的引荐来源网址列表中。请在 Cloud Console 中检查 API 密钥的引荐来源网址设置。