1

我试图让我的搜索字段根据配置文件自动生成。我想为标签制作一个模板并在模板内设置它的属性(当然来自 $scope)。所以模板看起来像这样:

<div>
    <label for = "{{ field.id }}">{{ field.label }}</label>
    <input type = "text" id = "{{ field.id }}" class = "{{ field.css }}" ng-model = "{{ field.model }}" />
</div>

如果我从该片段中删除 ng-model attr 一切都会正常工作,但如果我在粘贴时保留它,则没有任何 attrs 被“翻译”,当我检查它时它看起来像这样。

<input type = "text" id = "{{ field.id }}" class = "{{ field.css }}" ng-model = "{{ field.model }}" />

但它应该是这样的:

<input type = "text" id = "input1" class = "span3" ng-model = "user.name" />

有谁知道如何解决这个问题:) 谢谢大家!

4

0 回答 0