首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >类型“Angulartics2GoogleAnalytics”上不存在属性“”startTracking“”

类型“Angulartics2GoogleAnalytics”上不存在属性“”startTracking“”
EN

Stack Overflow用户
提问于 2019-02-27 22:58:09
回答 1查看 234关注 0票数 1

我已经阅读了https://github.com/angulartics/angulartics2的自述文件。但是我得到了一个错误:

ERROR in src/app/app.component.ts(21,33): error TS2339: Property 'startTracking' does not exist on type 'Angulartics2GoogleAnalytics'.

我假设我的依赖项的版本有一些问题,一个类似的线程(Angulartics2: startTracking() does not exist on type 'Angulartics2GoogleAnalytics')建议依赖项应该是"rxjs":"6.0.0“,typesript应该高于2.6。然而,我仍然有这个问题。

有什么想法吗?

我的package.json { "name": "flow-app", "version": "1.1.0", "license": "MIT", "scripts": { "ng": "ng", "start": "ng serve", "build": "ng build", "test": "ng test", "lint": "ng lint", "e2e": "ng e2e", "build:preprod": "ng build --prod --source-map --configuration=preprod --base-href /dist/", "build:prod": "ng build --prod --build-optimizer --configuration=production --base-href /dist/" }, "private": true, "dependencies": { "@angular/animations": "^5.1.0", "@angular/cdk": "^5.0.0", "@angular/common": "^5.1.0", "@angular/compiler": "^5.1.0", "@angular/core": "^5.1.0", "@angular/forms": "^5.1.0", "@angular/http": "^5.0.0", "@angular/material": "^5.2.5", "@angular/platform-browser": "^5.0.0", "@angular/platform-browser-dynamic": "^5.0.0", "@angular/router": "^5.0.0", "@ng-bootstrap/ng-bootstrap": "^1.0.0-beta.7", "angulartics2": "^6.3.1", "classlist.js": "^1.1.20150312", "core-js": "^2.4.1", "ng2-opd-popup": "^1.1.21", "rxjs": "6.0.0", "rxjs-compat": "6.0.0", "web-animations-js": "^2.3.1", "zone.js": "^0.8.14", "ajv": "^6.9.1" }, "devDependencies": { "@angular-devkit/build-angular": "^0.13.3", "@angular/cli": "^6.2.3", "@angular/compiler-cli": "^5.0.0", "@angular/language-service": "^5.0.0", "@types/jasmine": "~2.5.53", "@types/jasminewd2": "~2.0.2", "@types/node": "~6.0.60", "codelyzer": "~3.2.0", "jasmine-core": "~2.6.2", "jasmine-spec-reporter": "~4.1.0", "karma": "~1.7.0", "karma-chrome-launcher": "~2.1.1", "karma-cli": "~1.0.1", "karma-coverage-istanbul-reporter": "^1.2.1", "karma-jasmine": "~1.1.0", "karma-jasmine-html-reporter": "^0.2.2", "protractor": "^5.4.2", "ts-node": "~3.2.0", "tslint": "~5.7.0", "typescript": "^2.6.2" } }

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2019-03-04 16:38:27

当我使用rxjs 6.x.x时,我需要将Angular更新到6.x.x版本。这意味着我还必须使用最新版本的angulartics2。这现在是我的package.json了

代码语言:javascript
复制
{
  "name": "flow-app",
  "version": "1.1.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e",
    "build:preprod": "ng build --prod --source-map --configuration=preprod --base-href /dist/",
    "build:prod": "ng build --prod --build-optimizer --configuration=production --base-href /dist/"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^6.1.0",
    "@angular/cdk": "^6.0.0",
    "@angular/common": "^6.1.0",
    "@angular/compiler": "^6.1.0",
    "@angular/core": "^6.1.0",
    "@angular/forms": "^6.1.0",
    "@angular/http": "^6.0.0",
    "@angular/material": "^6.2.5",
    "@angular/platform-browser": "^6.0.0",
    "@angular/platform-browser-dynamic": "^6.0.0",
    "@angular/router": "^6.0.0",
    "@ng-bootstrap/ng-bootstrap": "^1.0.0-beta.7",
    "ajv": "^6.10.0",
    "angulartics2": "^7.0.1",
    "classlist.js": "^1.1.20150312",
    "core-js": "^2.4.1",
    "ng2-opd-popup": "^1.1.21",
    "rxjs": "^6.4.0",
    "rxjs-compat": "^6.4.0",
    "web-animations-js": "^2.3.1",
    "zone.js": "^0.8.14"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "^0.13.4",
    "@angular/cli": "^6.2.3",
    "@angular/compiler-cli": "^5.0.0",
    "@angular/language-service": "^5.0.0",
    "@types/jasmine": "~2.5.53",
    "@types/jasminewd2": "~2.0.2",
    "@types/node": "~6.0.60",
    "codelyzer": "~3.2.0",
    "jasmine-core": "~2.6.2",
    "jasmine-spec-reporter": "~4.1.0",
    "karma": "~1.7.0",
    "karma-chrome-launcher": "~2.1.1",
    "karma-cli": "~1.0.1",
    "karma-coverage-istanbul-reporter": "^1.2.1",
    "karma-jasmine": "~1.1.0",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "^5.4.2",
    "ts-node": "~3.2.0",
    "tslint": "~5.7.0",
    "typescript": "^2.9.2"
  }
}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/54908319

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档