是否可以将ElementRef
回退到组件。
我遇到的情况是手中有nativeElement
,需要将其强制转换为组件。
看看console.log,我想提取name
,可以将其还原吗?
谢谢
https://stackblitz.com/edit/angular-8aoq7f?file=src%2Fapp%2Fapp.component.ts
@Component({
selector: 'my-app',
template: `<sub-component [name]="'test'"></sub-component>`,
})
export class AppComponent {
constructor(private ref : ElementRef){
console.log((<SubComponent>this.ref.nativeElement).name); //<--- .name is undefined
}
}
@Component({
selector: 'sub-component',
template: `<div>{{name}}</div>`,
})
export class SubComponent {
@Input() name : string
}
答案 0 :(得分:1)
您不必将元素强制转换为组件。只需使用viewchild
import { Component,Input,ElementRef,ViewChild, AfterViewInit } from '@angular/core';
@Component({
selector: 'sub-component',
template: `<div>{{name}}</div>`,
})
export class SubComponent {
@Input() name : string
}
@Component({
selector: 'my-app',
template: `<sub-component [name]="'test'"></sub-component>`,
})
export class AppComponent implements AfterViewInit {
@ViewChild(SubComponent) private subComponent: SubComponent;
constructor(){}
ngAfterViewInit() {
console.log(this.subComponent.name); // No longer undefined
}
}
工作示例https://stackblitz.com/edit/angular-axtulh?file=src/app/app.component.ts
答案 1 :(得分:0)
答案
我在指令中并获取elementref,所以我不能使用viewchild, 有什么建议吗?
可以在这里https://github.com/angular/angular/issues/8277中找到。
...
constructor(
@Host() @Self() @Optional() public hostCheckboxComponent : MdlCheckboxComponent
,@Host() @Self() @Optional() public hostSliderComponent : MdlSliderComponent
){
if(this.hostCheckboxComponent) {
console.log("host is a checkbox");
} else if(this.hostSliderComponent) {
console.log("host is a slider");
}
}
...
您只能使用
@Host() @Self() public myComponent : MyComponent