在Angular 9中,可以通过自定义指令来访问子文本输入框的值。以下是一个包含代码示例的解决方法:
首先,创建一个名为getInputValue.directive.ts
的自定义指令文件,并添加以下代码:
import { Directive, ElementRef, HostListener } from '@angular/core';
@Directive({
selector: '[getInputValue]'
})
export class GetInputValueDirective {
constructor(private el: ElementRef) { }
@HostListener('input')
onInput() {
const inputValue = this.el.nativeElement.value;
console.log('Input value:', inputValue);
// 在这里可以对输入值进行任何操作
}
}
然后,在需要访问子文本输入框值的组件模板中,使用getInputValue
指令来绑定子文本输入框,并添加一个元素,如下所示:
最后,在组件的模块文件中导入并声明GetInputValueDirective
,如下所示:
import { NgModule } from '@angular/core';
import { GetInputValueDirective } from './getInputValue.directive';
@NgModule({
declarations: [
GetInputValueDirective
],
// 其他模块和组件的导入声明
})
export class AppModule { }
这样,当用户在输入框中输入文本时,onInput()
方法将被触发,并输出输入框的值到控制台。你可以在onInput()
方法中对输入值进行任何操作,例如将其存储到组件的变量中,发送到后端等。