作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Angular4 并尝试安装分析。
我遵循了本指南:
https://blog.thecodecampus.de/angular-2-include-google-analytics-event-tracking/
但是当我尝试构建我的项目时,出现错误:
error TS2304: Cannot find name 'ga'.
"@types/google.analytics": "0.0.38",
安装在我的
devDependencies .
UniversalAnalytics.ga
类型,但我无法让它工作。
this.router.events.subscribe(event => {
if (event instanceof NavigationEnd) {
let ga: Function;
ga('set', 'page', event.urlAfterRedirects);
ga('send', 'pageview');
}
});
Uncaught (in promise): TypeError: ga is not a function
this.router.events.subscribe(event => {
if (event instanceof NavigationEnd) {
let ga: any;
ga('set', 'page', event.urlAfterRedirects);
ga('send', 'pageview');
}
});
import { Component, OnInit, AfterViewChecked, AfterViewInit } from "@angular/core";
import { ActivatedRoute, Params, Router, NavigationEnd } from "@angular/router";
import { ResultsService } from "./shared/results.service";
import { HeightService } from "./shared/height.service";
@Component({
selector: 'bzRoot',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit, AfterViewChecked, AfterViewInit {
constructor(
private _activatedRoute: ActivatedRoute,
private _resultsService: ResultsService,
private _heightService: HeightService,
public router: Router) {
}
ngOnInit() {
this._activatedRoute.queryParams.subscribe((params: Params) => {
// Only update the elq if it changes (remember: changing a parameter causes the page to refresh)
var elq = params['elqid'];
if (elq) {
this._resultsService.elq = elq;
}
});
}
ngAfterViewChecked() {
this._heightService.resize();
}
ngAfterViewInit() {
//this.router.events.subscribe(event => {
// if (event instanceof NavigationEnd) {
// let ga: Function;
// ga('set', 'page', event.urlAfterRedirects);
// ga('send', 'pageview');
// }
//});
}
}
最佳答案
不知何故@types/google.analytics 包接缝被打破。只需将此添加到您的代码中:
declare let ga: Function;
关于angular - 错误 TS2304 : Cannot find name 'ga' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49068350/
我是一名优秀的程序员,十分优秀!