0
我試圖重複使用輸入字段ng-model =「... key.percent」的ng-repeat中的鍵。我可以在模型中重複使用ng-repeat的密鑰嗎?
事情是這樣的:
<div ng-repeat="(key, val) in $ctrl.offer.properties">
<fieldset ng-if="val">
<h3>{{$ctrl.getLabelFor(key)}}</h3>
<md-input-container>
<input name="procent" ng-model="$ctrl.offer.properties.key.procent"/>
</md-input-container>
我要保持我的性能,因爲它們。
有沒有辦法做到這一點?
如果你想讓鍵成爲你的模型,那麼你可以只做' – maurycy