在Angular 13中,ElementRef的初始化发生了变化。在之前的版本中,我们可以在构造函数中直接使用ElementRef。但是在Angular 13中,ElementRef需要通过ngOnInit生命周期钩子进行初始化。以下是示例代码,演示如何正确初始化ElementRef:
import { Component, ElementRef, OnInit } from '@angular/core';
@Component({
selector: 'app-example',
template: 'Hello World!'
})
export class ExampleComponent implements OnInit {
constructor(private elementRef: ElementRef) {}
ngOnInit() {
console.log(this.elementRef.nativeElement);
}
}
注意在构造函数中无需传递ElementRef。另外,如果想使用原生DOM属性和方法,请确保在ngOnInit生命周期钩子函数中使用.nativeElement属性调用它们。