AngularJS UI-Router View Cache 問題記錄

  • 392
  • 0

AngularJS UI-Router View Cache

今天在做ionic tabs 多頁籤功能時,第二個頁籤的資料加載過一次之後,

再加載第二次,資料還是舊的,但我想要每次瀏覽到這個頁籤就要重新reload 資料。

解決方案如下:

$ionicHistory.clearCache().then(function(){ $state.go('home'); });

參考文章: https://stackoverflow.com/questions/30498268/using-cache-view-false-for-specific-transition