我有json对象,我想在connectionPoints中获取数据,这是数组。它看起来像这样:
assetType : "this"
connectionPoints:Array(1)
type:{name: "Structure",
在TS文件中是这样的(实体就是这个json对象):
@Input() set elements(elements){
this._elements = elements;
if( elements && elements.length > 0){
this.entity = elements[0];
}else {
this.entity = {};
}
}
和html:
<input type="text" value={{here i want to show connection.type}}/>
我想在connectionPoints数组中获取数据...位置,系统,类型......这样我就可以在html输入中显示它。
答案 0 :(得分:1)
使用 ngModel
,如下所示
<input type="text" [(ngModel)]="entity.connectionPoints[0].type"/>