简体   繁体   English

Angular2 / Angular-cli:将本地项目更新为Angular 4的问题

[英]Angular2/Angular-cli: issues updating local project to Angular 4

I am trying to update an angular-cli/angular 2 project to Angular 4 I updated my package.json with all required angular4 modules and everything seems to go well untill I run the app. 我正在尝试将angular-cli / angular 2项目更新为Angular 4我用所有必需的angular4模块更新了我的package.json,一切似乎都很顺利,直到我运行应用程序。 When I run the app I get the following error: 当我运行应用程序时,我收到以下错误:

Error: 错误:

Unable to read property "provide" of undefined. 无法读取未定义的属性“提供”。

i've tried everything i can think of: I deleted node_modules and re installed with npm install but still getting the same error... Any idea what could be going wrong here/what I can try to resolve this? 我已经尝试了我能想到的一切:我删除了node_modules并重新安装了npm install但仍然得到了同样的错误......任何想法这里可能出现什么问题/我可以尝试解决这个问题? i'm using angular-cli 1.0.0.rc-1 我正在使用angular-cli 1.0.0.rc-1

my package.json: 我的package.json:

{
  "name": "Retail-Mobile",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve --proxy-config proxy.conf.json",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^4.0.0",
    "@angular/common": "^4.0.0",
    "@angular/compiler": "^4.0.0",
    "@angular/compiler-cli": "^4.0.0",
    "@angular/core": "^4.0.0",
    "@angular/forms": "^4.0.0",
    "@angular/http": "^4.0.0",
    "@angular/platform-browser": "^4.0.0",
    "@angular/platform-browser-dynamic": "^4.0.0",
    "@angular/platform-server": "^4.0.0",
    "@angular/router": "^4.0.0",
    "core-js": "^2.4.1",
    "moment": "^2.17.1",
    "ng2-toastr": "^4.0.1",
    "rxjs": "^5.1.0",
    "typescript": "^2.2.1",
    "zone.js": "^0.8.5"
  },
  "devDependencies": {
    "@angular/cli": "1.0.0-rc.2",
    "@types/jasmine": "2.5.38",
    "@types/node": "~6.0.60",
    "bootstrap": "3.3.7",
    "codelyzer": "~2.0.0",
    "jasmine-core": "~2.5.2",
    "jasmine-spec-reporter": "~3.2.0",
    "jquery": "3.1.1",
    "karma": "~1.4.1",
    "karma-chrome-launcher": "~2.0.0",
    "karma-cli": "~1.0.1",
    "karma-jasmine": "~1.1.0",
    "karma-jasmine-html-reporter": "^0.2.2",
    "karma-coverage-istanbul-reporter": "^0.2.0",
    "protractor": "~5.1.0",
    "ts-node": "~2.0.0",
    "tslint": "~4.5.0"
  }
}

Turns out the issue was me forgetting to add a ; 原来问题是我忘了添加一个; at the end of the ng2-toastr import statement... I'm surprised that angular-cli gave me such a vague unhelpful error... 在ng2-toastr import语句的最后......我很惊讶angular-cli给了我这么模糊的无益错误......

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM