Ionic Framework在导航时没有刷新列表



我正在用AngularJS创建一个移动应用程序。我调用一个资源,它调用API来给我值。一切都很好,但连接缓慢或3G $ scope不能冷却我,因此当浏览项目列表是旧的。

SERVICES.JS

 .factory('Exercises', function($resource) {
    // localhost: Local
    // 79.148.230.240: server
    return $resource('http://79.148.230.240:3000/wodapp/users/:idUser/exercises/:idExercise', {
        idUser: '55357c898aa778b657adafb4',
        idExercise: '@_id'
    }, {
        update: {
            method: 'PUT'
        }
    });
});
<<p> 控制器/strong>
.controller('ExerciseController', function($q, $scope, $state, Exercises) {
         // reload exercises every time  when we enter in the controller
         Exercises.query(function(data) {
             $scope.exercises = data;
         });
         // refresh the list of exercises
         $scope.doRefresh = function() {
             // reload exercises
             Exercises.query().$promise.then(function(data) {
                 $scope.exercises = data;
             }, function(error) {
                 console.log('error');
             });
             // control refresh element 
             $scope.$broadcast('scroll.refreshComplete');
             $scope.$apply();
         }
         // create a new execersie template
         $scope.newExercise = function() {
             $state.go('newExercise');
         };
         // delete a exercise
         $scope.deleteExercise = function(i) {
             // we access to the element using index param
             var exerciseDelete = $scope.exercises[i];
             // delete exercise calling Rest API and later remove to the scope
             exerciseDelete.$delete(function() {
                 $scope.exercises.splice(i, 1);
             });
         };
     })

APP.js

angular.module('wodapp', ['ionic', 'ngResource', 'wodapp.controllers','wodapp.services'])
// Run
.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    // ionic is loaded
  });
})
// Config
.config(function($stateProvider, $urlRouterProvider, $ionicConfigProvider) {
  $stateProvider
    .state('slide', {
      url: '/',
      templateUrl: 'templates/slides.html',
      controller: 'SlideController'
    })
    .state('login', {
      url: '/login',
      templateUrl: 'templates/login.html',
      controller: 'LoginController'
    })
    .state('dashboard', {
      url: '/dashboard',
      templateUrl: 'templates/dashboard.html',
      controller: 'DashboardController'
    })
    .state('exercise', {
      url: '/exercise',
      templateUrl: 'templates/exercises.html',
      controller: 'ExerciseController'
    })
    .state('newExercise',{
      url: '/newExercise',
      templateUrl: 'templates/newExercise.html',
      controller: 'NewExerciseController'
    });
  $urlRouterProvider.otherwise('/');
});

如果你想重新加载控制器逻辑的一部分,每次视图被激活:

.controller('ExerciseController', function(
  $q, 
  $scope, 
  $state, 
  Exercises,
  $ionicView
) {
   // reload exercises every time  when we enter in the controller
   $ionicView.enter(function(){
     // This gets executed regardless of ionicCache
     Exercises.query(function(data) {
       $scope.exercises = data;
     });;
   });
});

否则,您可以在.state()

上使用reload选项

相关内容

  • 没有找到相关文章

最新更新