AngularJS - ng-bind和ng-model的区别
AngularJS的数据绑定有ng-bind和ng-model,一般用于如下:
<input ng-model="object.xxx">
<span ng-bind="object.xxx"></span>
<input ng-model="object.xxx">
<span ng-bind="object.xxx"></span>
ng-bind是单向绑定,由作用于$scope到view层,且在HTML控件(HTML控件有:input、select、button和textarea)中不可显示。
ng-model是双向绑定,$scope<--->view层,ng-model 指令用于绑定应用程序数据到 HTML 控制器(input, select, textarea)的值。
{{}}用于显示数据。
posted on 2018-09-03 09:15 TrustNature 阅读(4) 评论(0) 编辑 收藏 举报