将 React 语义 UI 复选框与 Redux 表单集成



我想在反应语义UI中添加一个但即使我像这样命名复选框,它也无法将选中的值发送到服务器:

<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>

假定的操作应携带有效负载中的检查值,类似于评级和评论的携带方式。

我被困在这里半天如果你注意到什么,请帮助我。谢谢!

使用以下代码解决了该问题

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

相关内容

  • 没有找到相关文章

最新更新