2

angular2 クイックスタート コードを使用して、基本的な todo アプリを作成しました。

ログインページとfirebaseへの接続を追加して、todoを保存および取得しようとしていましたが、firebase3の実装に問題がありました。

開始スクリプト (以下を参照) でtscへの呼び出しを削除することで機能させることができますが、これは短期的な修正のようです。

"start": "concurrently \"npm run tsc:w\" \"npm run lite\" "

npm startを実行したときに表示されるエラーは、component.tsc ファイルで使用するたびに firebase という名前が見つからないことを示しています。また、firebase 3 のグローバル タイピングのダウンロードがまだ見つからないため、firebase 2 のタイピングしかないことにも気付きました。

firebase 2 と 3 のレイアウト方法の違い (firebase 3 は index.html のみにあり、firebase 2 は全体で宣言されているように見える) が問題を引き起こしている可能性がありますか?

私のfirebaseの経験は非常に限られているため、fb2とfb3の違いを誤解している可能性があることに注意してください。

以下は、現在npm startで発生するエラーです

> angular2-quickstart@1.0.0 start /Users/ahiggins/Documents/angular_2/tutorials/todo
> tsc && concurrently "npm run tsc:w" "npm run lite" 

app/login/login.component.ts(25,9): error TS2304: Cannot find name 'firebase'.
app/login/login.component.ts(47,9): error TS2304: Cannot find name 'firebase'.
app/login/login.component.ts(56,13): error TS2304: Cannot find name 'firebase'.
app/login/login.component.ts(59,56): error TS2304: Cannot find name 'firebase'.
app/app.component.ts(16,9): error TS2304: Cannot find name 'firebase'.

npm ERR! Darwin 15.6.0
npm ERR! argv "/usr/local/Cellar/node/6.4.0/bin/node" "/Users/ahiggins/.npm-packages/bin/npm" "start"
npm ERR! node v6.4.0
npm ERR! npm  v3.10.6
npm ERR! code ELIFECYCLE
npm ERR! angular2-quickstart@1.0.0 start: `tsc && concurrently "npm run tsc:w" "npm run lite" `
npm ERR! Exit status 2
npm ERR! 
npm ERR! Failed at the angular2-quickstart@1.0.0 start script 'tsc && concurrently "npm run tsc:w" "npm run lite" '.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the angular2-quickstart package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     tsc && concurrently "npm run tsc:w" "npm run lite" 
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs angular2-quickstart
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls angular2-quickstart
npm ERR! There is likely additional logging output above.
4

0 に答える 0