17

我真的不明白对象绑定是如何工作的,所以如果有人能解释我是否可以在基类中使用@Input(),或者更好:装饰器和继承。例如,如果每个表单都应该接收一个客户,那么我有一个基类:

export class AbstractCustomerForm{

@Input() customer;
...
}

然后我在一个实际的组件中扩展这个类:

export AwesomeCustomerForm extends AbstractCustomerForm implements OnInit{
    ngOnInit(){

        if(this.customer)
            doSomething();

    }
}

但这不起作用,客户永远不会被设置:(

4

6 回答 6

12

更新

从2.3.0-rc.0开始正确支持继承

原来的

装饰器不是继承的。它们需要直接应用于用作组件的类。子类上的装饰器被忽略。如果只有超类有它们而子类没有,我已经看到它提到@Input()或正在工作。@Output()

于 2016-02-25T15:05:38.207 回答
7

我遵循的一种策略是这样的:

@Component({
    selector: 'my-component',
    template: `......`,
    inputs: MyAbstractComponent.genericInputs
})
export class MyComponent extends MyAbstractComponent {

    @Input() width: number = 200;
    ........
}

在哪里:

export abstract class MyAbstractComponent {
    public static genericInputs : string[] = ['base'];
    public base: String;
}

因此,MyComponent 将获得和绑定base一样好。width其实我觉得使用反射还是有改进的空间的。

于 2016-09-11T23:25:35.123 回答
5

即使在 Angular 4.2.4 中,它在开发模式下也能正常工作。但是在进行 prod build ( ng build -prod) 时,它会失败:

ERROR in Template parse errors:
Can't bind to 'step' since it isn't a known property of 'app-textarea-step'.
1. If 'app-textarea-step' is an Angular component and it has 'step' input, 
then verify that it is part of this module.
2. If 'app-textarea-step' is a Web Component then add 
'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to 
suppress this message.

我的组件看起来像:

abstract class StepComponent {
  @Input() step: BaseStep;
  @Output() next = new EventEmitter<string>();
  @Output() answer = new EventEmitter<Answer>();
}

abstract class SingleNextStepComponent extends StepComponent {

  onSubmit(answer: string) {
    // ConfirmStep heeft geen answer.
    if (answer) {
      this.answer.emit({ question: this.step.key, value: answer });
    }
    const step = this.step as SingleNextStep;
    this.next.emit(step.next);
  }
}

// Decorator inheritance works in standard build (ng build) but fails in production build (ng build -prod)
// Workaround: inputs element on @Component that contains the inputs.....
@Component({
  selector: 'app-textbox-step',
  templateUrl: './textbox-step.component.html',
  inputs: ['step']
})
export class TextboxStepComponent extends SingleNextStepComponent { }

@Component({
  selector: 'app-textarea-step',
  templateUrl: './textarea-step.component.html',
})
export class TextareaStepComponent extends SingleNextStepComponent { }

幸运的是,解决方法有效。添加到 TextBoxStepComponent 的输入阻止了这个失败,进入下一个,尚未提供“输入”。

但是'ng build'工作正常,不需要@Component装饰器上的输入......

于 2017-06-27T15:57:37.717 回答
2

我遇到了这个问题,只是想指出,从 Angular 2.3.0-rc.0 开始,这实际上是可能的。

继承语义:

装饰器:

1) 以祖先第一顺序列出类及其父类的装饰器

2)只使用每种类型的最后一个装饰器(例如@Component / ...)

构造函数参数:

如果一个类从父类继承并且没有声明构造函数,它会继承父类的构造函数,以及该父类的参数元数据。

生命周期钩子:

遵循正常的类继承模型,即即使子类中的方法没有被覆盖,也会调用父类的生命周期钩子。

https://github.com/angular/angular/commit/f5c8e09

于 2017-02-01T11:57:55.083 回答
1

我在这里找到了一个可能的解决方案:

https://medium.com/@ttemplier/angular2-decorators-and-class-inheritance-905921dbd1b7#.ca68alvcz

基本上,它创建了一个自定义装饰器,它通过反射简单地合并父装饰器和子装饰器。

实际上我不能让它在基于 angular-cli 的项目上工作。

于 2016-08-05T01:11:04.160 回答
1

装饰器不是继承的,但类是。所以我的解决方案是这样的:

@Component({selector: 'a')
class A {
  @Input() field;
}

@Component({selector: 'b', inputs: ['field']}
class B extends A {
}
于 2016-11-08T18:32:58.343 回答