问题描述
我遇到以下错误
如果我去检查我的 package.json ,我在5.0.0-rc.4上有angularfire2,在4.6.2上有firebase.查看屏幕截图以获取详细信息
And if I go and check in my package.json, I have angularfire2 on version 5.0.0-rc.4, and firebase on 4.6.2.see screenshot for details
我尝试将angularfire2和firebase的版本更改为以前的版本,但是没有任何效果.
I tried changing the version of angularfire2 and firebase to previous versions but nothing worked.
有什么建议吗?谢谢.
Any suggestions ?Thank you.
{
"name": "twitter-revamped",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^4.2.4",
"@angular/common": "^4.2.4",
"@angular/compiler": "^4.2.4",
"@angular/core": "^4.2.4",
"@angular/forms": "^4.2.4",
"@angular/http": "^4.2.4",
"@angular/platform-browser": "^4.2.4",
"@angular/platform-browser-dynamic": "^4.2.4",
"@angular/router": "^4.2.4",
"angularfire2": "^5.0.0-rc.4",
"core-js": "^2.4.1",
"firebase": "^4.6.2",
"ng2-semantic-ui": "^0.9.6",
"rxjs": "<5.4.2",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/cli": "1.4.7",
"@angular/compiler-cli": "^4.2.4",
"@angular/language-service": "^4.2.4",
"@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.1.2",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~2.3.3"
}
}
推荐答案
我解决了
必须为此设置firebase和angularfire2:
Had to set firebase and angularfire2 to this:
"firebase":"4.6.0","angularfire2": "5.0.0-rc.3"
"firebase":"4.6.0","angularfire2": "5.0.0-rc.3"
但是我又遇到了另一个错误:
"@angular/compiler-cli" package was not properly installed. Error: Error: Cannot find module '@angular/compiler-cli'
but then I got another error:
"@angular/compiler-cli" package was not properly installed. Error: Error: Cannot find module '@angular/compiler-cli'
一个npm安装程序对其进行了修复.
A npm install fixed it.
这篇关于Angular 4,angularfire2,元数据版本不匹配的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!