我在第一个模块中有一个父 Controller ,在第二个模块中有一个“子” Controller 。第二个模块与第一个模块有依存关系。我希望我的“子” Controller 继承“父” Controller 。但是问题是如何调用“父” Controller 方法。
例如:
SecondModule.controller("childBrowseCtrl", function($scope, $injector, $controller){
$injector.invoke(ParentBrowseCtrl, this, {$scope:$scope});
//this overrides the onedit function from parent
$scope.onEdit = function(){
console.log("from edit console");
//how do i make this work?
ParentBrowseCtrl.$scope.onEdit();
};
});
html结构:
<html>
<head></head>
<body>
<div ng-view></div>
</body>
<script src="coreapp.js"></script>
<script src="mainapp.js"></script>
<script>
angular.bootstrap(document,["MainApp"]);
</script>
</html>
最佳答案
这可能起作用:
var parentOnEdit = $scope.onEdit;
$scope.onEdit = function() {
parentOnEdit();
};