./~/firebase/app/shared_promise.js 中的错误

Posted

技术标签:

【中文标题】./~/firebase/app/shared_promise.js 中的错误【英文标题】:ERROR in ./~/firebase/app/shared_promise.js 【发布时间】:2017-09-11 17:02:04 【问题描述】:

我正在尝试使用 AngularFire2 创建一个 Angular 2 应用程序

我在关注this guide。

每次我尝试在我的应用模块中导入 AngularFireModule 然后在导入中执行 AngularFireModule.initializeApp(config) 时,我都会在尝试时收到以下错误运行 ng serve:

ERROR in ./~/firebase/app/shared_promise.js
Module not found: Error: Can't resolve 'promise-polyfill' in 
'C:\Users\username\Desktop\demo-app\node_modules\firebase\app'
@ ./~/firebase/app/shared_promise.js 22:35-62
@ ./~/firebase/app/firebase_app.js
@ ./~/firebase/app.js
@ ./~/firebase/firebase-browser.js
@ ./~/angularfire2/angularfire2.js
@ ./~/angularfire2/index.js
@ ./src/app/app.module.ts
@ ./src/main.ts
@ multi webpack-dev-server/client?http://localhost:4200 ./src/main.ts
webpack: Failed to compile.

这就是我的 package.json 的样子:

 
     "name": "xxxxx",
     "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/common": "^2.4.0",
    "@angular/compiler": "^2.4.0",
    "@angular/core": "^2.4.0",
    "@angular/forms": "^2.4.0",
    "@angular/http": "^2.4.0",
    "@angular/platform-browser": "^2.4.0",
    "@angular/platform-browser-dynamic": "^2.4.0",
    "@angular/router": "^3.4.0",
    "angularfire2": "^2.0.0-beta.8",
    "core-js": "^2.4.1",
    "firebase": "^3.7.8",
    "rxjs": "^5.1.0",
    "zone.js": "^0.7.6"
  ,
  "devDependencies": 
    "@angular/cli": "1.0.0-rc.0",
    "@angular/compiler-cli": "^2.4.0",
    "@types/jasmine": "2.5.38",
    "@types/node": "~6.0.60",
    "codelyzer": "~2.0.0",
    "jasmine-core": "~2.5.2",
    "jasmine-spec-reporter": "~3.2.0",
    "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.4.2",
    "typescript": "~2.0.0"
  

【问题讨论】:

你是在app.module.ts AngularFireModule 和 NgModule 中导入的吗? 是的,我正在 app.module.ts 中导入 我被困在 4.在 AngularFire2 的设置指南中设置 @NgModule,我正在按照指南所说的那样做,但没有运气 【参考方案1】:

以下完全解决了我的问题。

npm install promise-polyfill --save --save-exact

【讨论】:

【参考方案2】:
npm install promise-polyfill --save --save-exact

它对我有用。

【讨论】:

完美适用于错误:无法解析“promise-polyfill”!!!!谢谢【参考方案3】:

如果您希望将依赖项也保存在 package.json 中,请务必包含 --save 标志以及 --save-exact。

npm install promise-polyfill --save --save-exact

【讨论】:

你的包名有错别字。 @Vitali Kniazeu:谢谢!现在已经修好了。【参考方案4】:

firebase npm 软件包版本 3.7.8 中缺少“promise-polyfill”依赖项,您可以安装“promise-polyfill”或将 firebase 软件包降级到 3.7.7。

【讨论】:

【参考方案5】:
npm install promise-polyfill --save-exact

在您的命令提示符中粘贴此命令并运行它, 我遇到了同样的问题,“https://github.com/stefanpenner/es6-promise”这个帖子帮助我解决了这个问题。

【讨论】:

以上是关于./~/firebase/app/shared_promise.js 中的错误的主要内容,如果未能解决你的问题,请参考以下文章