gpt4 book ai didi

angular - 表单控件值 onChange 的表单访问

转载 作者:行者123 更新时间:2023-12-04 14:16:32 26 4
gpt4 key购买 nike

我正在尝试评估 Formly .这是我的第一次尝试 - 我想在 textarea 的值发生变化时调用一个方法。这是我尝试使用的代码 - 到目前为止它似乎不起作用我不确定我的 templateOptions 语法是否错误,或者我是否应该访问不同的输入值。

 form = new FormGroup({});
model = { defaultText: this.defaultText } ;
label = this.defaultText ;
fields: FormlyFieldConfig[] = [{
key: 'editor',
id: 'editor',
name: 'editor',
type: 'textarea',
templateOptions: {
placeholder: this.defaultText,
onChange: this.previewText = this.parseMarkDownText(this.form.get('editor').value),
// appearance: 'fill'
}
}];

最佳答案

哎呀,我忘了发布我的答案。这是有效的。

   ngOnInit() {
this.form = new FormGroup({});
this.fields = [{
key: 'editor',
id: 'editor',
name: 'editor',
type: 'textarea',
defaultValue: this.defaultText,
templateOptions: {
rows: 5,
cos: 50,
change: (field, $event)=>{
this.previewText = this.parseMarkDownText(field.form.controls.editor.value);
},
}
}];
}
```

关于angular - 表单控件值 onChange 的表单访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59584989/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com