微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在 react-select 下拉列表中选择初始值时,react-final-form pristine 不会重置为 true

如何解决在 react-select 下拉列表中选择初始值时,react-final-form pristine 不会重置为 true

我在 react-select 中使用 react-final-form 并基于原始值,我想启用/禁用提交按钮,但即使在下拉列表中选择初始值,原始值仍然为 false。>

这是我的表单组件:

<Form
    onSubmit={() => { }}
    initialValues={{
      questionnaireFormOID: 'formOID',questionnaireType: {
        label: 'Label',value: 'value',}
    }}
  >
    {
      ({ handleSubmit,pristine }) => (
        <form onSubmit={handleSubmit}>
          <div className='properties-form-parent'>
            <Field
              name="questionnaireFormOID"
              disabled
              label={i18n.t('ecoa.questionnaires.create_modal.formoid.label')}
              component={FieldInput}
            />
            <Field
              name="questionnaireType"
              label={i18n.t('ecoa.questionnaires.questionnaire_types_dropdown.label')}
              component={FieldSelectDropdown}
              placeholder={i18n.t('ecoa.questionnaires.questionnaire_types_dropdown.placeholder')}
              options={getQuestionnaireTypeOptions()}
              components={{
                Option: ReactSelectCustomOption,}}
            />
          </div>
          <div className='action-controls-wrapper'>
            <ActionControls pristine={pristine} />
          </div>
        </form>
      )
    }
  </Form>

在比较时,我可以看到 initialValuesvalues 是相同的,但我猜 react-final-form 没有进行深入比较,这就是为什么我没有得到原始 true用于 react-select 返回的对象。

有什么办法可以强制 react-final-form 对 pristine 进行深度比较?

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。