javascript - angular view does not update. The data in the scope has been confirmed to have changed, but the view still has not changed.
世界只因有你
世界只因有你 2017-07-05 10:42:29
0
1
1042

1.The angular scope data has definitely changed. Why is the view not updated?
2.

3.The console.log output is like this. Are you sure the data in the array has changed or the view has not changed?

#
世界只因有你
世界只因有你

reply all(1)
刘奇

setTimeout generates a new execution sequence that is not created by the angular JS library method

setTimeout(function () {
    $scope.$apply(function () {
       ...                 // 这里执行你的loadData
      });
  }, 500); 

You can also use $timeout in angular directly

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!