分享Angular js 双向绑定的实例教程
程序员文章站
2022-05-12 17:33:21
...
问题:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js?1.1.11"></script> </head> <body> <div ng-app="myApp"> <p ng-controller = "myContrl">结果为 <span ng-bind="" ></span> <input type="text" ng-model="first">{{first+second}}</p> </div> <script>var app = angular.module("myApp",[]); app.controller("myContrl",function($scope){ $scope.first = 5; $scope.second =10; });</script> </body> </html>
显示结果为
但是,我要是输入50,想要结果为60
因为这个是字符串类型需要转换成数字类型
解决方法:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js?1.1.11"></script> </head> <body> <div ng-app="myApp"> <p ng-controller = "myContrl">结果为 <span ng-bind="" ></span> <input type="text" ng-model="first">{{first *1+second*1}}</p> </div> <script>var app = angular.module("myApp",[]); app.controller("myContrl",function($scope){ $scope.first = 5; $scope.second =10; });</script> </body> </html>
显示即可正常 即是在 {{first *1+second*1}}显示的时候,转换了一下
或者,启用事件监听
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js?1.1.11"></script> </head> <body> <div ng-app="myApp"> <p ng-controller = "myContrl">结果为 <span ng-bind="" ></span> <input type="text" ng-model="first">{{total}}</p> </div> <script>var app = angular.module("myApp",[]); app.controller("myContrl",function($scope){ $scope.first = 5; $scope.second =10; $scope.total = parseInt($scope.first)+parseInt($scope.second); $scope.$watch(function(){return $scope.first; },function(newValue,oldValue){ if(newValue != oldValue){ $scope.total = parseInt($scope.first)+parseInt($scope.second); } }); });</script> </body> </html>
也能输出正确结果
以上就是分享Angular js 双向绑定的实例教程的详细内容,更多请关注其它相关文章!
推荐阅读
-
深入理解vue.js双向绑定的实现原理
-
Angular和Vue双向数据绑定的实现原理(重点是vue的双向绑定)
-
angular,vue,react的基本语法—双向数据绑定、条件渲染、列表渲染、angular小案例
-
解决angular2在双向数据绑定时[(ngModel)]无法使用的问题
-
angular4自定义组件非input元素实现ngModel双向数据绑定的方法
-
VUE JS 使用组件实现双向绑定的示例代码
-
div实现自适应高度的textarea实现angular双向绑定
-
vue.js数据绑定的方法(单向、双向和一次性绑定)
-
自定义Angular指令与jQuery实现的Bootstrap风格数据双向绑定的单选与多选下拉框
-
vue.js使用v-model指令实现的数据双向绑定功能示例