在Angular 9中,你可以使用@Input
装饰器来设置动态输入字段的值。下面是一个示例代码,展示了如何使用@Input
装饰器来设置动态输入字段的值:
在父组件中,定义一个动态输入字段,并使用@Input
装饰器来声明它:
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-parent',
template: `
`
})
export class ParentComponent {
dynamicValue: string;
constructor() {
this.dynamicValue = 'Hello from Parent';
}
}
在子组件中,接收父组件传递的动态输入字段,并使用它:
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-child',
template: `
{{ dynamicInput }}
`
})
export class ChildComponent {
@Input() dynamicInput: string;
}
在这个示例中,父组件使用dynamicValue
来设置动态输入字段的值,在子组件中使用@Input
装饰器来接收并使用该值。
请确保在模板中正确引入父组件和子组件,并在模块中声明它们。
这样,当父组件的dynamicValue
发生变化时,子组件中的动态输入字段dynamicInput
也会更新为相应的值。