我想在一个反应语义UI中添加一个 但即使在我将Checkbox命名为:
之后,它也无法将检查值发送到服务器<Form.Field
label="The question is new to the intent library"
name="newType"
control={Field}
component={Checkbox}
/>
此组件位于以下表单中:
<Form>
<Form.Field
label="Rating"
control={Field}
name="rate"
component={Rating}
...
/>
<That checkbox ... />
<Form.Field
label="Comment"
control={Field}
name="comment"
component="textarea"
/>
</Form>
假定的操作应该在有效负载中携带已检查的值,类似于评级和注释的执行方式。
我被困在这里半天了 如果你发现了什么,请帮助我。谢谢!
答案 0 :(得分:1)
使用以下代码解决问题
<Form.Field
control={Field}
label="The question is new to the intent library"
name="newType"
component="input"
type="checkbox"
/>