gpt4 book ai didi

javascript - 如何覆盖 angular.js 插件中的 Controller 函数

转载 作者:行者123 更新时间:2023-11-29 19:39:54 25 4
gpt4 key购买 nike

在开发我的第一个 Angular.js 项目时,我遇到了麻烦。经过一天的研究,我不知道如何覆盖插件 Controller 方法。

我正在使用一个相当不错的 https://github.com/ManifestWebDesign/angular-gridster插件,但一些 Controller 功能(例如 GridsterCtrl.updateHeight)不适合我的任务。

请记住,编辑插件代码不是一个好主意(因为我想使用 http://bower.io/ 使 Gridster 保持最新状态),我知道 Gridster Controller 功能需要在其他地方覆盖。

在这种情况下指令似乎无济于事,那么应该如何进行覆盖——或者我在这里面对的是完全错误的方向吗?

感谢您的宝贵时间。

最佳答案

你想做的事情一点也不坏,但我建议从 Controller 继承并覆盖你需要的东西。我喜欢 this blog 中解释的两种不同方法

为了这个答案的持久性,我正在复制一些摘录。

在 AngularJS 中,通过 $injector 服务在任何时候请求任何已定义的依赖项是微不足道的。这很容易被滥用,使您以后的生活变得困难,但它也有其用途。以下是我们如何使用它来将 Controller 安排到继承层次结构中,从通用父 Controller 的定义开始:

function ParentController($scope, myService) {
// In this form of inheritance, properties are set in reverse order: child sets
// first, then parent. So a property that is intended to be overridden has to
// check for its own existence.
//
// e.g. Only create this function if it hasn't already been set by the child.
this.decorateScope = this.decorateScope || function () {
$scope.decorator = myService.getDecorator() + 2;
}

// Setting up an initialize function is another necessary part of enabling child
// controllers to override features of the parent. All setup is delayed to the
// end of instantiation, allowing individual functions and properties to be
// overridden first.
this.initialize = this.initialize || function () {
this.decorateScope();
}

// This will be invoked last of all when a child controller is instantiated.
initialize();
}

接下来我们定义一个继承自上面父 Controller 的子 Controller :

function ChildController($injector, $scope, myService) {
// Override the parent function while still allowing further children to override
// it.
this.decorateScope = this.decorateScope || function () {
$scope.decorator = 44;
}

// This is the magic by which this controller inherits from the ParentController.
// Essentially the ParentController function is invoked on "this" and is passed
// dependencies directly.
//
// Note that this means a child controller must have all of the dependencies
// required by the parent.
$injector.invoke(ParentController, this, {
$scope: $scope,
myService: myService
});
}

实际上可以跳过将 $scope 以外的任何依赖项从子 Controller 传递到父 Controller 。在您开始编写注入(inject)模拟依赖项的测试代码之前,一切都会正常进行。任何未显式传递到 $injector.invoke() 的依赖项都将被实例化为真实的东西,而不是测试用例中指定的模拟。这显然非常不方便,并且会完全破坏您的测试 - 所以始终显式传递所有依赖项。

这种继承方法支持方便的 mixin,因为 mixin 的工作方式与继承完全相同:

function ChildController($injector, $scope, myService, otherService) {
// Any number of controllers can be invoked in this way. They will apply
// their properties and overrides in the order they are invoked. So if you
// want a mixin to override the parent, it has to come first.
$injector.invoke(MixinController, this, {
$scope: $scope,
otherService: otherService
});
$injector.invoke(ParentController, this, {
$scope: $scope,
myService: myService
});
}

关于javascript - 如何覆盖 angular.js 插件中的 Controller 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23787963/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com