数据绑定

Posted 追忆枉然

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据绑定相关的知识,希望对你有一定的参考价值。

方向1(Model数据 绑定到View):

<div ng-controller="myCtrl">
<p>{{count}}</p>
<button ng-click="add()">点我</button>
</div>
<script>
var app = angular.module(‘myApp‘, [‘ng‘]);
app.controller(‘myCtrl‘, function ($scope) {
$scope.count=0;
$scope.add=function(){
$scope.count++;
}
})
相比DOM操作:先去查找元素,再去设置元素,只需要把model数据绑定视图上,数据改,视
图就会更新。

方向2的绑定(将View数据绑定到Model数据)
<div ng-controller="myCtrl">
<input type="text" ng-model="text">
<p>{{text}}</p>
</div>
<script>
var app = angular.module(‘myApp‘, [‘ng‘]);
app.controller(‘myCtrl‘, function ($scope) {
$scope.text=20;
})
首先是$scope方向1的绑定,绑定到view上,当在输入框输入时是对$scope中数据绑定,

实现方法只有一种方式: ng-model
<input type=‘text‘ ng-model=‘myText‘/>

$scope.$watch(‘模型变量名‘,function(){})



以上是关于数据绑定的主要内容,如果未能解决你的问题,请参考以下文章

有没有更聪明的方法将布局绑定到片段?

如何用 Android 数据绑定替换 androidx.fragment.app.FragmentContainerView 中的片段

使用 MVVM 和数据绑定更改每个片段中的工具栏标题

Kotlin Android Studio - setContenView - 绑定(片段)

使用绑定从片段访问父活动的 UI 元素

在约束布局中查看片段的绑定不起作用