如何使用Angular JS绑定input-tag中的数据

时间:2016-12-08 10:43:45

标签: angularjs ionic-framework

我正在尝试使用以下代码绑定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-modelng-value/ng-bind时。我无法在输入标签中获取数据。您能告诉我如何在input_tag中获取数据吗?

2 个答案:

答案 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