Skip to content

Instantly share code, notes, and snippets.

@twlz0ne
Created November 5, 2013 03:07
Show Gist options
  • Save twlz0ne/7313219 to your computer and use it in GitHub Desktop.
Save twlz0ne/7313219 to your computer and use it in GitHub Desktop.
Q
ParentCtrl = function($scope) {
$scope.validate = function() {
//...
}
$scope.edit = function(item) {
//...
$scope.validate();
//...
}
}
ChildCtrl = function($scope) {
$scope.validate = function() {
//...
}
$scope.edit = function(item) {
$scope.$parent.validate = $scope.validate(); // 覆盖父类的方法
$scope.$parent.edit(item);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment