angle2で動的IDを設定するにはどうすればよいですか?ionic2/angular2の動的ID(* ngFor)の設定方法は?
私は
<div class = "CirclePoint" *ngFor="#c of circles"
id = "{{ 'Location' + c.id }}">
</div>
this.circles = [
{ x: 50 , y: 50 ,id : "oyut1" },
{ x: 100 , y: 100 ,id : "oyut3" },
{ x: 150 , y: 150 ,id : "oyut2" }
];
を試してみましたが、それは動作しません。
<div class = "CirclePoint" *ng-for="#c in circles">
<div id="location_{{c.id}}">write something which you want like c.x </div>
</div>`
うまくいけば、これはあなたのために動作します:
ありがとうございました。 [attr.id]は動作しますが、[id]は動作しません。 –
フィードバックをいただきありがとうございます、私は特別な扱いでいくつかの共通の属性があったと思ったが、多分何かを混ぜた。 –
私が探していたもの。そこにはさまざまな方法がありますし、角度2が変わるように正しい方法が変わるようですね。 – John