Angular 2+ 错误:找不到名称“gapi”

zhu*_*hen 6 google-analytics-api angular

基本上,当我为核心报告数据调用 google 分析 api 时,我收到以下错误。它适用于我的本地主机服务器,但是当我尝试部署该应用程序时,它对我来说失败了。请告知如何在 angular2+ 中导入“gapi”变量。非常感谢!

这就是我在我的 angular 应用程序中的称呼。
gapi.auth.authorize(authData, (res:any)=>{})

src/app/order/order.component.ts(65,7) 中的错误:错误 TS2304:找不到名称“gapi”。src/app/order/order.component.ts(66,11): 错误 TS2304: 找不到名称“gapi”。src/app/order/order.component.ts(67,11): 错误 TS2304: 找不到名称“gapi”。src/app/order/order.component.ts(69,13): 错误 TS2304: 找不到名称“gapi”。src/app/order/order.component.ts(71,15): 错误 TS2304: 找不到名称“gapi”。src/app/order/order.component.ts(77,17): 错误 TS2304: 找不到名称“gapi”。

下面是我的代码

gapi.auth.authorize(authData, (res:any)=>{
      gapi.client.load('analytics', 'v3').then(function() {
      gapi.client.analytics.management.accounts.list().then( (accountResponse:any) =>{
        let accountId = accountResponse.result.items[4].id;
        gapi.client.analytics.management.webproperties.list({'accountId': accountId})
        .then((accountPropertiesResponse:any) => {
          gapi.client.analytics.management.profiles.list({
              'accountId': accountPropertiesResponse.result.items[0].accountId,
              'webPropertyId': accountPropertiesResponse.result.items[0].id,
          })
          .then((profileIdResponse:any)=>{

            gapi.client.analytics.data.ga.get({
              'ids': 'ga:' + profileIdResponse.result.items[0].id,
              'start-date': sevenDaysAgo,
              'end-date': databaseDate,
              'metrics': 'ga:sessions',
              'dimensions': 'ga:deviceCategory',
            }).then((coreReportResponse:any)=>{
              mobileNum = coreReportResponse.result.rows[1][1];
              desktopNum = coreReportResponse.result.rows[0][1];
              tabletNum = coreReportResponse.result.rows[2][1];
              visits = coreReportResponse.result.totalsForAllResults['ga:sessions'];
            });
          });
        });
      });
    });
  });
Run Code Online (Sandbox Code Playgroud)

索引.html

<!doctype html>
<html lang="en">
<head>
 <meta charset="utf-8">
 <title>ShopifyReport</title>
 <base href="/">

 <meta name="viewport" content="width=device-width, initial-scale=1">
 <link rel="icon" type="image/x-icon" href="favicon.ico">
 </head>
<body>
 <app-root></app-root>
 <script src="https://apis.google.com/js/client.js?onload=authorize" 
async defer></script>

  </body>
      </html>
Run Code Online (Sandbox Code Playgroud)

配置文件

{
  "compileOnSave": false,
  "compilerOptions": {
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types",
    ],
    "types": ["gapi", "gapi.auth2", "gapi.auth"],
     "lib": [
      "es2017",
      "dom"
    ]
  }
 }
Run Code Online (Sandbox Code Playgroud)

zhu*_*hen 6

向组件添加了以下代码,并允许从 Google Analytics 访问部署链接。谢谢你们!

declare var gapi : any;
Run Code Online (Sandbox Code Playgroud)


Har*_*n O 6

对于那些可能有类似问题的人,使用NgZone将解决问题,请按照以下步骤操作:

安装以下内容。

npm install --save @types/gapi
npm install --save @types/gapi.auth2
Run Code Online (Sandbox Code Playgroud)

在节中tsconfig.json或节tsconfig.app.jsoncompilerOptions将此添加"gapi", "gapi.auth2"types. 它看起来像

"types": ["gapi", "gapi.auth2"],
Run Code Online (Sandbox Code Playgroud)

然后在您的服务或组件中,使用NgZone,您从@angular/core

这是示例:

import { Component, NgZone, AfterViewInit } from '@angular/core';

@Component({
  selector: 'app-google-app',
  templateUrl: './google-app.component.html',
  styleUrls: ['./google-app.component.scss']
})
export class GoogleAppComponent implements OnInit, AfterViewInit {

constructor(private ngZone: NgZone) { }

ngAfterViewInit() {
    this.ngZone.run(() => {
        // example to render login button
        gapi.signin2.render('my-signin2', {
        ...
        ...
        });

        // example to load client
        gapi.load('client', {
         ...
         ...
        });

    });
  }    
}
Run Code Online (Sandbox Code Playgroud)

Angular NgZone 文档...阅读更多

index.html 中,根据您的需要,您可能需要在<head></head>标签中添加以下内容

<meta name="google-signin-client_id" content="xxxxxxxxxx.apps.googleusercontent.com">
<script src="https://apis.google.com/js/platform.js?onload=renderButton" async defer></script>
<script src="https://apis.google.com/js/api.js"></script>
Run Code Online (Sandbox Code Playgroud)

  • 在 Angular 9 中,需要将其添加到 `tsconfig.app.json` 中 (2认同)