我目前正在使用 Google Maps API 脚本:
function loadScript() {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://maps.googleapis.com/maps/api/js?v=3.exp&key=KEY&sensor=false&callback=callback";
document.body.appendChild(script);
}
我已经使用了中的响应status
进行callback
了回退,但是如果说 API 由于任何原因无法访问,即当上面的脚本没有加载时,如何创建回退?
或者,这是否有点矫枉过正,是否应该假设 API 将始终为您服务?