Wyodrębniłem przykładowy kod szablonu z tego samouczka i wykonałem poniżej dwa kroki, aby rozpocząć -
npm install // worked fine and created node_modules folder with all dependencies
npm start
// nie powiodło się z poniższym błędem-node_modules/rxjs/Subject.d.ts(16,22): error TS2415: Class 'Subject<T>' incorrectly extends base class 'Observable<T>'. Types of property 'lift' are incompatible. Type '<T, R>(operator: Operator<T, R>) => Observable<T>' is not assignable to type '<R>(operator: Operator<T, R>) => Observable<R>'. Type 'Observable<T>' is not assignable to type 'Observable<R>'. Type 'T' is not assignable to type 'R'. npm ERR! code ELIFECYCLE npm ERR! errno 2
Widzę że w temacie.d.ts deklaracja podniesienia jest jak poniżej -
lift<T, R>(operator: Operator<T, R>): Observable<T>;
A w Observable.ts jest zdefiniowane jak poniżej:
lift<R>(operator: Operator<T, R>): Observable<R> {
Uwaga: - 1. Jestem nowy w Angular2 i próbuję się opanować.
Błąd może wynikać z niezgodnych definicji metody podnoszenia
Przeczytałem ten wątek na githubie
Jeśli muszę zainstalować inną wersję rxjs, powiedz, jak odinstalować i zainstalować poprawną wersję rxjs.
Edit1: Mogę trochę spóźnić się z odpowiedzią tutaj, ale nadal pojawia się ten sam błąd, nawet po użyciu maszynopisu 2.3.4 lub rxjs 6 alpha . Poniżej znajduje się mój plik package.json,
{
"name": "angular-quickstart",
"version": "1.0.0",
"scripts": {
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",
"lite": "lite-server",
"postinstall": "typings install",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings"
},
"license": "ISC",
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"@angular/upgrade": "2.0.0",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.3",
"rxjs": "6.0.0-alpha.0",
"systemjs": "0.19.27",
"zone.js": "^0.6.23",
"angular2-in-memory-web-api": "0.0.20",
"bootstrap": "^3.3.6"
},
"devDependencies": {
"concurrently": "^2.2.0",
"lite-server": "^2.2.2",
"typescript": "2.3.4",
"typings": "^1.3.2"
}
}