当前位置:主页 > 网页前端 > AngularJS >

解决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很少遇到,我这几年是第一次遇到,记录一下。

您可能感兴趣的文章:

相关文章