我想通過使用ng-repeat來幹我的html。用下面的代碼:AngularJS Concat ng-model
<div class="form-group" ng-repeat="(key, value) in expense">
<label for={{key}} class="col-sm-2 control-label">{{key}}:</label>
<div class="col-sm-10">
<input type="number" class="form-control" id={{key}} ng-model="expense" />
</div>
</div>
我在試圖在ng-model
來連接到「費用」問題。我想添加密鑰。
IE:ng-model="expense.{{key}}"
但這不起作用。
對此提出建議?
謝謝!
這應該工作'NG-模型= 「費用[關鍵]」' – Satpal 2015-02-23 17:01:07
http://stackoverflow.com/questions/28667366/angular-dynam ic-ng-model-name/28667521#28667521這有些類似 – 2015-02-23 17:18:00