gpt4 book ai didi

javascript - 将 Antd TextArea 值设置为 Tag 组件

转载 作者:行者123 更新时间:2023-11-30 19:36:21 26 4
gpt4 key购买 nike

我有 reactjs Antd 表单,我想在 TextArea 中渲染 Tag 组件,类似于 Select 组件! enter image description here

我尝试通过

设置值
values.description = <Tag color="magenta">magenta</Tag>
this.props.form.setFieldsValue(values);

函数,但它显示 [object Object] [ enter image description here ] 2

<Form.Item label={<span>Description</span>}>
{getFieldDecorator('description', {
initialValue:''
})(
<TextArea maxLength={500} autosize={{ minRows: 4, maxRows: 4 }}
placeholder={'Description'} />
)}
</Form.Item>

我希望得到与 Select 组件相同的结果 Antd Select Component关于如何做到这一点有什么想法吗?

最佳答案

这对于 TextArea 是不可能的。您正在寻找的是 content editable div,这很容易完成:

<div contenteditable="true">
<Tag color="magenta">magenta</Tag>
</div>

关于javascript - 将 Antd TextArea 值设置为 Tag 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55918297/

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