search

Home  >  Q&A  >  body text

javascript - angular view does not update. The data in the scope has been confirmed to have changed, but the view still has not changed.

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?

#
世界只因有你世界只因有你2732 days ago1126

reply all(1)I'll reply

  • 怪我咯

    怪我咯2017-07-05 10:44:29

    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

    reply
    0
  • Cancelreply