1

如果我有一个具有以下属性的组件:

import { Component, OnInit } from 'angular2/core';
import { CarService } from 'someservice';

@Component({
    selector: 'car-detail',
    templateUrl: './app/cars/car.component.html'
})

export class CarComponent implements OnInit {

    model: Observable<Car>;

    constructor(
        private _carService: CarService
    ) { }

    ngOnInit() {
        // begin benefit setup
        this.model = this._carService.get(5);
    }
}

例如,我想在我看来使用异步管道来订阅它并将属性用作文本,你怎么能真正订阅它?例如:

<template #mycar = "model | async" >
    <p>{{ myCar?.make }}</p> 
</template>

我是 Angular2 的新手,不确定我是否做错了什么。

4

2 回答 2

2

我相信你已经接近一个好的解决方案。

<template *ngIf = "model | async as mycar" >
    <p>{{ mycar.make }}</p> 
</template>

于 2019-05-21T07:03:58.633 回答
0

尝试:

<template #mycar = "model | async" >
    <p>{{ (myCar | async).make }}</p> 
</template>
于 2016-10-23T12:50:18.700 回答