我有一个流星应用程序,它有一个像这样的谷歌地图:
<script>
function initMap() {
...
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=MyApIkEy&callback=initMap"></script>
当我使用meteor run android
运行应用时,initMap()
回调会正确启动。
但是当我使用meteor run android --mobile-server http://localhost:3000
运行应用时,它永远不会被调用。
为什么会发生这种情况的任何想法?
谢谢:)