小编典典

ng-model 和 ng-bind 有什么区别

all

我目前正在学习 AngularJS,并且很难理解 和 之间的ng-bind区别ng-model

谁能告诉我它们有何不同以及何时应该使用另一种?


阅读 219

收藏
2022-03-08

共1个答案

小编典典

ng-bind 具有单向数据绑定($scope –> view)。它有一个快捷方式{{ val }} ,显示$scope.val插入到
html 中的范围值,其中val是变量名。

ng-model 旨在放置在表单元素中,并具有双向数据绑定($scope –> view 和 view –> $scope),例如<input ng-model="val"/>

2022-03-08