Google Maps Javascript API应该加载this way:
如果我不得不回答我的问题,我会这样做:
var googleAPILoadedPromise = Promise.pending();
function initMap() {
googleAPILoadedPromise.resolve();
}
googleAPILoadedPromise.promise.then(function() {
console.log('loaded');
});
最佳答案
可能是这样的:
原文链接:https://www.f2er.com/js/428998.html