使用redux形式集成反应语义ui复选框

时间:2018-03-06 07:23:38

标签: reactjs semantic-ui redux-form

我想在一个反应​​语义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>

假定的操作应该在有效负载中携带已检查的值,类似于评级和注释的执行方式。

我被困在这里半天了 如果你发现了什么,请帮助我。谢谢!

1 个答案:

答案 0 :(得分:1)

使用以下代码解决问题

<Form.Field 
 control={Field}
 label="The question is new to the intent library"
 name="newType"
 component="input"
 type="checkbox"
/>