我正在做一个有角度的项目,我需要根据一系列问题创建一个表单。我想ng-model
为数组中的每个问题创建。
所以我想出了类似下面的东西,但它不起作用。
<div class="form-group" data-ng-repeat="question in questions">
<label for="{{question.label}}" class="col-md-2 control-label">
{{question.label}}:
</label>
<div class="col-md-10">
<input type="text"
class="form-control"
name="{{question.label}}"
data-ng-model={{question.label}}
required />
<span class="error"
data-ng-show="formQuickView.{{question.label}}.$error.required">
Required!
</span>
</div>
</div>
有人可以帮我解决这个问题吗?
提前致谢。