如何将 googleapis npm 包导入 meteor

How to import the googleapis npm package into meteor

我正在使用 meteor 框架,并尝试使用 google 工作表来可视化我应用程序的一些数据。但无论出于何种原因,我似乎无法加载 google api。我从命令 npm i googleapis 开始并添加 const {google} = require('googleapis') 据我所知这是正确的。然而,当我 console.log(google) 它吐出 undefined.

我运行正在使用 Meteor 1.8.1、Node 6.12.0 和 googleapi^39.2.0

我很想知道我做错了什么,大多数遇到这个问题的人都需要更新其他各种软件包,所以我已经 运行 npm update 无济于事,我我试过使用 import { google } from 'googleapis' 也无济于事,我看到某处需要转换或其他东西,但它仍然吐出 undefined

我注意到,如果我 运行 require('googleapis') 来自我的流星 shell,那么它 returns 它应该使用的所有方法和诸如此类的东西。

删除我的 node_modules 和 运行 npm i 成功了

好的,我是怎么做到的,以防止在我的 Meteor 项目中添加另一个 NPM ...

在我的 main.html 中有这一行: <link rel="dns-prefetch" href="//maps.googleapis.com">

下一个示例显示添加 google 地图。我首先确保在一个会话中,我最多加载一次这个库。

我在多个页面中调用此代码,因为我需要 API。因为我使用反应,所以我在 'componentDidMount'.

if (!(window.google && window.google.maps)) {
      const script = document.createElement('script')
      script.src = 'https://maps.googleapis.com/maps/api/js?key=xxxxxxxxx&libraries=places'
      script.defer = true
      document.head.appendChild(script)
    }