解决angular双向绑定无效果,ng-model不能正常显示的问题
时间:2021-01-19 12:07:58|栏目:AngularJS|点击: 次
今天遇到了个问题,js代码中变量已经变化了,但是html页面中没有正常的显示出来。
代码如下:
<input type="text" ng-model="paramValue" auto-focus> $scope.paramValue = param;
以上代码就会造成有时input框中无内容的情况,打断点显示$scope.paramValue是有值的,但是页面就是啥都显示不出来。
换成下边代码就没问题了:
<input type="text" ng-model="searchdata.paramValue" auto-focus> $scope.searchdata.paramValue = param;
这个bug很少遇到,我这几年是第一次遇到,记录一下。
上一篇:Angular2仿照微信UI实现9张图片上传和预览的示例代码
栏 目:AngularJS
下一篇:AngularJS实现给动态生成的元素绑定事件的方法
本文标题:解决angular双向绑定无效果,ng-model不能正常显示的问题
本文地址:http://www.codeinn.net/misctech/47774.html