我有一个菜单,显示用户所属的不同组名称。我准备了一个模板页面,以便当用户选择其中一个菜单组时,模板的字段会发生变化。
<li><a href="#"><i class="glyphicon glyphicon-folder-open"></i>Home </a></li>
<li><a data-toggle="collapse" ng-init="getAllGroupsofUser()"data-target="#groups">My Groups</a>
<ul id="groups" class="collapse">
<li ng-repeat="group in groupsofUser" ng-controller="groupsCTRL"><a
ng-click="openPage(group)">{{group.name}}</a>
</li>
</ul>
</li>
群组已成功显示在菜单中。 我使用的是ng-view和$ routeProvider。
我的$ routeProvider
app.config(['$routeProvider',
function($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'home.html',
controller:"MyController"
})
.when('/group/:groupname', {
templateUrl: "groupTemplate.html",
controller:"groupsCTRL"
}).
otherwise({
redirectTo: '/'
});
}]);
我的控制器
app.controller( 'groupsCTRL',[ '$scope', '$http' , '$location', '$routeParams' ,function($scope, $http,$location,$routeParams){
$scope.groupeName= $routeParams.groupname;
$scope.openPage = function(group) {
$scope.groupselected = group;
console.log( "group: "+$scope.groupselected.id);
location.href = "#/group/"+group.name;
}
}]);
我的模板
<div class="row" >
<h1 class="page-header">Groupe {{groupeName}} </h1>
</div>
<div class="row">
{{groupselected.id}}
</div>
我的问题是显示了groupeName,但是groupselected.id只显示在控制台中(因为我使用了console.log( "group: "+$scope.groupselected.id);
)
请帮助我,我需要知道该组是否已传递到该页面,因为在下一步中我需要显示有关所选组的信息。
答案 0 :(得分:2)
我通过创建一个新的RESTful Web服务来解决我的问题,以获得Group By Name(因为它是唯一的)
//get Group by Name
$scope.getGroupByName = function(groupname){
$scope.group=[];
$http({method: 'GET', url: '/getGroupByName/'+groupname}).
success(function(result) {
$scope.group = result.data;
}).
error(function(data, status, headers, config) {
// called asynchronously if an error occurs
// or server returns response with an error status.
});
};
我可以通过我的groupeName并获得小组
答案 1 :(得分:1)
使用$location.path
代替location.href
。另外,为了应用位置更改,&amp;然后你需要运行摘要周期。
<强>代码强>
$scope.openPage = function(group) {
$scope.groupselected = group;
console.log( "group: "+$scope.groupselected.id);
$location.path("/group/"+group.name);
if(!$scope.$$phase) $scope.$apply();
};