我正在尝试使用div
withng-click
进行路由:
ng-click="go('/item/{{item.id}}'
)。
我可以打电话$parent.go
,甚至go
在使用ParentCtrl
. 但ParentCtrl_2
根本不起作用。我试图寻找一些答案,但无法弄清楚。我错过了什么?
app.controller('ParentCtrl', function($scope) {
$scope.go = function(path) {
console.log(path);
}
}
);
app.controller('ParentCtrl_2', ['$scope', '$location',
function($scope, $location) {
$scope.go = function(path) {
$location.path(path);
}
}
]);
app.controller('ChildCtrl', ['$scope', '$routeParams',
function($scope, $routeParams) {
...
}
]);