Angular-2从@input参数获取[Object Object]

时间:2016-09-19 20:37:24

标签: javascript angular typescript

我想使用@input参数将对象传输到组件。

Home.html中

                <ion-row>
                    <ion-col *ngFor="let dc of devices">
                      <device  deviceObject="{{dc}}"></device>
                    </ion-col>
                </ion-row>

设备组件html

我想从组件中的对象显示属性。

<div>   <label>{{dc.name}}</label> </div>

Device.ts

声明输入deviceObject

@Input('deviceObject') deviceObject: Object;

我想要打印一个属性,但我正在未定义

如果我打印对象 deviceObject ,我会得到 [对象]

0 个答案:

没有答案