1.全局刷新,禁用缓存;
在app.js中设置cach:false,如下:
.state(‘material‘, { url: ‘/material‘, cache:false, templateUrl: ‘templates/commonusefunction/material.html‘, resolve: load([ ‘js/controllers/commonusefunction/materialController.js‘, ]) })
2.局部刷新页面,加载一部分数据的情况:
在页面的控制器中加入:
$scope.$on(‘$ionicView.beforeEnter‘, function() { if($scope.userid != $localStorage.get("loginID")){ $scope.userid=$localStorage.get("loginID"); $scope.unitlist=null; $scope.data=null; $scope.getUnit(); $scope.searchClick(); } });
时间: 2024-10-27 01:18:10