web-dev-qa-db-ja.com

Angular2:タイプ 'Subscription'はタイプに割り当てられません

Jsonファイルから国を取得してドロップダウンにバインドする非常に小さなアプリケーションを作成しました。

countrys.json

export class Country {
    id: number;
    name: string;
}

factory.service.ts

import { Injectable } from '@angular/core';
import { Http, Response} from '@angular/http';
import { Observable } from 'rxjs/Observable';

import { Country } from './shared/country';

@Injectable()
export class FactoryService {
    private countryUrl = "app/data/countries.json";

    constructor(private http: Http) {

    }

    getCountry(): Observable<any> {
        return this.http.get(this.countryUrl)
            .map(this.extractData)
            .do(data => console.log("get Countries from json: " + JSON.stringify(data)))
            .catch(this.handleError);
    }

    private extractData(response: Response) {
        let body = response.json();
        return body || {};
    }

    private handleError(error: Response) {
        console.log(error);
        return Observable.throw(error.json().error || "500 internal server error");
    }
}

factory-form.component.ts

import { Component, OnInit } from '@angular/core';
import { NgForm } from '@angular/forms';

import { Factory } from './factory';
import { Country } from './shared/country';
import { FactoryService } from './factory.service';

@Component({
    moduleId: module.id,
    selector: 'factory-form',
    templateUrl: './factory-form.component.html',
    styleUrls: ['./factory-form.component.css'],
    providers: [FactoryService]
})
export class FactoryFormComponent implements OnInit{

    private model: Factory;
    countries: Country[];
    factoryStatuses;
    productTypes;
    risks;
    private errorMessage: string;
    private submitted = false;

    constructor(private factoryService: FactoryService) {

    }

    ngOnInit(): void {
        this.countries = this.factoryService.getCountry()
            .subscribe(countries => this.countries = countries,
            error => this.errorMessage = error);
    }

    onSubmit(): void {
        this.submitted = true;
    }}

factory-form.component.htmlスニペット

<div class="col-lg-3">
            <select class="form-control" name="Country">
                <option *ngFor="let country of countries" [value]="country.id">{{country.name}}</option>
            </select>
        </div>

次のようにランタイムエラーが発生しています:

エラー:TypeScriptは次のエラーを検出しました。
C:/Projects/ethical_resourcing/src/Ethos.Client/tmp/broccoli_type_script_compiler-input_base_path-kviWq7F3.tmp/0/src/app/factory/factory-form.component.ts(30、9):タイプ「サブスクリプション」は、「Country []」と入力することはできません。
プロパティ 'length'がタイプ 'Subscription'にありません。
C:/Projects/ethical_resourcing/src/Ethos.Client/tmp/broccoli_type_script_compiler-input_base_path-kviWq7F3.tmp/0/src/app/factory/shared/country.ts(2、15): ';'期待した。 BroccoliTypeScriptCompiler._doIncrementalBuild(C:\ Projects\ethical_resourcing\src\Ethos.Client\node_modules\angular-cli\lib\broccoli\broccoli-TypeScript.js:120:19)at BroccoliTypeScriptCompiler.build(C:\ Projects\ethical_resourcing\src\Ethos.Client\node_modules\angular-cli\lib\broccoli\broccoli-TypeScript.js:43:10)at C:\ Projects\ethical_resourcing\src\Ethos.Client\node_modules\angular-cli\node_modules\broccoli-キャッシングライター\ index.js:152:21 at lib $ rsvp $$ internal $$ tryCatch(C:\ Projects\ethical_resourcing\src\Ethos.Client\node_modules\angular-cli\node_modules\rsvp\dist\rsvp.js :1036:16)at lib $ rsvp $$ internal $$ invokeCallback(C:\ Projects\ethical_resourcing\src\Ethos.Client\node_modules\angular-cli\node_modules\rsvp\dist\rsvp.js:1048:17) lib $ rsvp $$ internal $$ publish(C:\ Projects\ethical_resourcing\src\Ethos.Client\node_modules\angular-cli\node_modules\rsvp\dist\rsvp.js:1019:11)at lib $ rsvp $ asap $ $ flush(C:\ Projects\ethical_resourcing\src\Ethos.Client\node_modules\angular-cli\node_modu les\rsvp\dist\rsvp.js:1198:9)process._tickCallback(node.js:349:13)のnextTickCallbackWith0Args(node.js:420:9)で

ObservableおよびcountriesのTypeをanyに変更すると、エラーが発生します

元の例外:タイプ 'オブジェクト'の異なるサポートオブジェクト '[オブジェクトオブジェクト]'が見つかりません。 NgForは、配列などのIterableへのバインドのみをサポートします。

14
Kamran Pervaiz

はい、タイプはObservableである必要があり、非同期パイプを使用してngForを幸せにする必要があります。

*ngFor="let country of countries | async"

または、Country[]と入力しますが、サブスクライブし、countriesを配列に割り当てます。

this.factoryService.getCountry() // note, removed this.countries = 
    .subscribe(
        countries => this.countries = countries,
        error => this.errorMessage = error
    );
12
dfsq