我正在尝试使用以下代码绑定input_tag
中的数据:
<label class="item item-input">
<input
type="text"
placeholder="Title"
ng-model="item.Title" minlength="3"
ng-blur="validate[0]=true"
ng-bind="item.title" />
</label>
但是当我同时使用ng-model
和ng-value/ng-bind
时。我无法在输入标签中获取数据。您能告诉我如何在input_tag
中获取数据吗?
答案 0 :(得分:0)
@jahnavi,ng-bind和ng-model不会同时使用,在我们使用ng-model的输入标签中,它会将输入与控制器的对象绑定。
答案 1 :(得分:0)
我使用过滤器使其信任如下,然后我没有得到任何错误
app .filter('to_trusted', ['$sce', function($sce){
return function(text) {
return $sce.trustAsHtml(text);
};
}]);
对于ng-bind和ng-model ,请check this
和this 仅适用于ng-model