要在Angular应用中设置自动填充,可以通过以下步骤实现:
autocomplete
属性,并设置为on
或off
。例如:
ViewChild
装饰器获取表单控件的引用。例如:import { Component, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'app-my-component',
template: `
`
})
export class MyComponent {
@ViewChild('usernameInput') usernameInput: ElementRef;
@ViewChild('passwordInput') passwordInput: ElementRef;
}
ngAfterViewInit
生命周期钩子中,使用原生JavaScript方法获取表单控件,并设置autocomplete
属性。例如:import { Component, ViewChild, ElementRef, AfterViewInit } from '@angular/core';
@Component({
selector: 'app-my-component',
template: `
`
})
export class MyComponent implements AfterViewInit {
@ViewChild('usernameInput') usernameInput: ElementRef;
@ViewChild('passwordInput') passwordInput: ElementRef;
ngAfterViewInit() {
this.usernameInput.nativeElement.setAttribute('autocomplete', 'on');
this.passwordInput.nativeElement.setAttribute('autocomplete', 'off');
}
}
通过这些步骤,你可以设置Angular应用中的自动填充。请注意,根据浏览器的不同,自动填充的行为可能会有所不同。