Ionic Framework导航时没有刷新列表

问题描述 投票:0回答:1

我正在AngularJS中创建一个移动应用。我调用一个资源,该资源调用一个API给我值。一切正常,但是连接速度慢或3G $范围使我不爽,因此在浏览项目列表时比较旧。

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'
        }
    });
});

CONTROLLERS

.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('/');
});
angularjs ionic-framework scope frameworks 3g
1个回答
0
投票

如果要重新加载控制器逻辑的一部分,则每次激活视图时:

.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;
     });;
   });
});

否则,您可以在reload上使用.state()选项>

© www.soinside.com 2019 - 2024. All rights reserved.