第一个刷新页面后,AngularJS控制器不起作用

时间:2016-04-08 14:46:07

标签: javascript angularjs ionic-framework angularjs-controller

我正在使用AngularJS作为我的混合Ionic应用程序。

我的控制器:

.controller('SubmitCtrl', function($scope) {
  console.log("this just work for only refreshing the page!);
});

只有每次刷新页面时,console.log都可以正常工作,但当我切换到其他状态,并回到submit状态时(不刷新页面), console.log不起作用。

有什么想法吗?

2 个答案:

答案 0 :(得分:4)

它是bcoz离子缓存您的页面。 试试这个

  <ion-view cache-view="false" view-title="My Title!">
      ...
    </ion-view>

,或者

$stateProvider.state('myState', {
   cache: false,
   url : '/myUrl',
   templateUrl : 'my-template.html'
})

来源:http://ionicframework.com/docs/api/directive/ionNavView/

答案 1 :(得分:1)

尽管@Ved完美地回答了这个问题,但禁用离子视图缓存并不是一个优雅的解决方案。如果您只是想在进入此页面时执行页面控制器的某些部分,那么您可能应该使用离子视图生命周期:

.controller('SubmitCtrl', function($scope) {
  $scope.$on('$ionicView.beforeEnter', function() {
    //code in this block will be executed every time before you enter in
    console.log("this just work for only refreshing the page!);
  });
});

有关离子视图生命周期的更多信息,请参阅http://www.gajotres.net/understanding-ionic-view-lifecycle/http://ionicframework.com/docs/api/directive/ionView/。希望这会有所帮助,问候!