|
板凳
楼主 |
发表于 2016-1-14 10:02:04
|
只看该作者
/*个人中心*/
.state('tab.grzx', {
url: '/grzx',
views: {
'tab-grzx': {
templateUrl: 'templates/tab-grzx.html',
controller: 'GrzxCtrl'
}
}
})
.state('tab.grzxs-information', {
url: '/grzx/:grzxsId',
views: {
'tab-grzx': {
templateUrl: 'templates/grzxs-information.html',
controller: 'InformationCtrl'
}
}
});
.controller('GrzxCtrl', function($scope, Grzx) {
$scope.grzxs = Grzx.all();
$scope.remove = function(grzxs) {
Grzx.remove(grzxs);
};
})
.controller('InformationCtrl', function($scope, $stateParams, Grzx) {
$scope.grzxs = Grzx.get($stateParams.grzxsId);
});
但我写了.state('tab.grzxs-information', { })他链接过去后可以显示,但链接过去的页面ng-repeatd数据加不上去 |
|