我使用angular 1.5来开发我的应用程序,我正在使用.component()
。我有三个组件及其控制器,所有组件都非常相似。如何从comp1
扩展控制器以将其与comp2
一起使用?
单独的js文件中的每个组件:
comp1.js
comp2.js
comp3.js
答案 0 :(得分:1)
您也可以相互扩展组件控制器。 使用以下方法:
父组件(从中扩展):
/**
* Module definition and dependencies
*/
angular.module('App.Parent', [])
/**
* Component
*/
.component('parent', {
templateUrl: 'parent.html',
controller: 'ParentCtrl',
})
/**
* Controller
*/
.controller('ParentCtrl', function($parentDep) {
//Get controller
const $ctrl = this;
/**
* On init
*/
this.$onInit = function() {
//Do stuff
this.something = true;
};
});
子组件(扩展的组件):
/**
* Module definition and dependencies
*/
angular.module('App.Child', [])
/**
* Component
*/
.component('child', {
templateUrl: 'child.html',
controller: 'ChildCtrl',
})
/**
* Controller
*/
.controller('ChildCtrl', function($controller, $parentDep) {
//Get controllers
const $ctrl = this;
const $base = $controller('ParentCtrl', {$parentDep});
//Extend
angular.extend($ctrl, $base);
/**
* On init
*/
this.$onInit = function() {
//Call parent init
$base.$onInit.call(this);
//Do other stuff
this.somethingElse = true;
};
});
您可以在子控制器中定义新方法,覆盖现有方法,调用父方法等。工作得非常好。
答案 1 :(得分:1)
我可能会建议您只使用服务来共享和组合组件。然后,您可以跳过担心.extend()
,$controller
等的复杂问题。
angular
.module('app')
.factory('component.utils', function() {
return {
sharedProp: 'foo',
sharedMethod: function() { return 'bar' }
}
})
// components can all easily use functionality
// provided by one (or more) services, w/o
// needing a complicated inheritance model.
.component('foo', {
templateUrl: 'foo.html',
controller: [
'component.utils',
function(utils) {
this.$onInit = function() {
this.prop = utils.sharedProp;
utils.sharedMethod();
// now do other foo things...
}
}
]
})
.component('bar', {
templateUrl: 'foo.html',
controller: [
'component.utils',
function(utils) {
this.$onInit = function() {
this.prop = utils.sharedProp;
utils.sharedMethod();
// now do other bar things...
}
}
]
});
继承有它的位置,但是有利于组合而不是继承通常是更好的解决方案。 article。