如何在 redux 表单中访问 redux store

IT技术 reactjs redux react-redux redux-form react-router-redux
2021-05-09 01:03:14

我是 react-redux 世界的新手,如果我遗漏了什么,请纠正我:

基本上我试图通过 redux 存储访问主机名并在表单中使用它。到目前为止,我只是在 redux 表单中使用主机名引用 window.location 但我想通过 redux store/ 通过任何其他更好的方法访问主机名,以便我可以保持函数的纯净?想法?

谢谢

编辑:

import React from 'react'
import { Field, reduxForm } from 'redux-form'

const SimpleForm = (props) => {
const { handleSubmit, pristine, reset, submitting } = props
// goal is to prevent this here and do it via redux store or 
// any other options
// so I can avoid external calls inside pure function
const hostName = window.location.hostname;

return (
<form onSubmit={handleSubmit}>
  <div>
    <label>First Name</label>
    <div>
      <Field name="firstName" component="input" type="text" placeholder="First Name"/>
    </div>
  </div>
</form>
 )
 }

export default reduxForm({
 form: 'simple'  // a unique identifier for this form
})(SimpleForm)

问题:

如何将窗口对象存储在 redux 存储中,是否可以通过 redux 存储在 redux 表单中访问它们,或者是否可以随时响应路由器帮助?

2个回答

您应该将表单连接到 Redux 状态。

import { connect } from 'react-redux'

export default reduxForm({
 form: 'simple'  // a unique identifier for this form
})(connect(mapStateToProps)(SimpleForm)

接着:

const mapStateToProps = state => {
  return {
    hostName: state.reducerName.hostName
  }
}

所以你可以通过 this.props.hostName 访问它,考虑到 hostName 之前是在 reducer 中设置的。

如果你使用React Router,你可以通过 props访问历史对象,它也有 location 属性。

前面提到的答案现在确实对我有用,可悲的是,

这是对我有用的参考 react-redux 文档

import { connect } from 'react-redux';

const mapStateToProps = state => {
  return {
    form: state.form
  }
}

ClassName= connect(
   mapStateToProps,
   mapDispatchToProps
)(ClassName);

export default reduxForm({
  form: 'ObjectRepo',
  validate: validateObjects
})(ClassName);

我传递的“验证”是我的validation.js,因为我使用的是同步验证(如果有的话,它完全是可选的)

'form' 是我在减速器中使用的状态名称。我的减速机代码,

const allReducers = combineReducers({
  form: reduxFormReducer
});