如何从其父范围调用在子范围中定义的方法?
function ParentCntl() {
// I want to call the $scope.get here
}
function ChildCntl($scope) {
$scope.get = function() {
return "LOL";
}
}
2
最好的选择是,定义一个服务,然后将该服务注入两个控制器中。或使用rootscope。
—
tymeJV