我知道如何使用$routeParams
设置和检索ID:
.when('/building/:buildingId',
ng-href="#/building/{{building.objectId}}">
我现在要做的是根据$scope
将$routeParams
变量设置为true。因此,当我单击链接时,目标页面中的$scope
变量将设置为true。
如何做到这一点?
答案 0 :(得分:1)
$scope.var = $routeParams.buildingId
或者,如果您想将$scope
var设置为TRUE
$scope.var = $routeParams.buildingId === undefined ? false : true