在每个发布请求中更新状态

时间:2020-04-23 16:26:23

标签: reactjs redux react-redux redux-thunk

伙计们,我在我的react redux项目中有一个表单,因此在提交表单时,我会调用一个操作,该操作会击中api并将文档插入到mongodb中,所以我还想每次都更新状态,以便在我提交表单后立即我的状态得到更新,然后在下面将它们呈现(作为对象数组)

Form.js

class Form extends Component {

  constructor(props) {
    super(props);
    this.state = {
      taskName: "",
      taskDescription: "",

    };
  }



  handleSubmit = () => {
    this.props.addTask(this.state);
  };
  render() {
    return (
      <div className="m-4">
        <div className="d-flex justify-content-between align-items-center">
          {" "}
          <h2 className=" ">Pomodoro Tasks</h2>
          <button className="btn btn-primary" onClick={()=>window.location.reload()}>Refresh</button>
        </div>
        <form>
        <div className="form-group ">
          <label>Task Name</label>
          <input
            type="text"
            className="form-control"
            onChange={(e) => this.setState({ taskName: e.target.value })}
          />
        </div>
        <div className="form-group">
          <label>Task Description</label>
          <input
            type="text"
            className="form-control"
            onChange={(e) => this.setState({ taskDescription: e.target.value })}
          />
        </div>


        </form>

        <button type="submit" className="btn btn-primary" onClick={(e) => this.handleSubmit(e)}>
          Submit
        </button>

       ////render here the state
      </div>
    );
  }
}
const mapStateToProps = (state) => {

  return state
};
export default connect(mapStateToProps, { addTask })(Form);

Actions.js

export const addTask = (details) => {
  return async (dispatch ,getState) =>{

    axios.post('/add_task', details)
      .then(function (response) {
        Swal.fire('Tasks Added !')
        dispatch({type:POSTDATA,payload:response.data})
      })
      .catch(function (error) {
        Swal.fire('Error in adding to database')
        console.log(error);
      });

  };
};

export const getTask = () => {
  return async (dispatch ,getState) =>{
    axios.get('/get_task')
      .then(function (response) {
        dispatch({type:GETDATA,payload:response.data})
      })
      .catch(function (error) {
        console.log(error);
      });
  };
};

reducer.js

const postPomodoro = (state = [], action) => {
  switch (action.type) {
    case POSTDATA:
      return action.payload; //well this is only returning one object that is inserted at that time i need to 
somehow get all the previous data too that are inserted in order to update state with all data and then render it.

    default:
      return state;
  }
};
const getPomodoro = (state = [], action) => {
  switch (action.type) {

    case GETDATA:
      return {...state,tasks:action.payload};
    default:
      return state;
  }
};

我在减速器中尝试过

 case POSTDATA:
      return {...state,task:action.payload};

但这也让我找回了最近插入的数据,而不是以前插入的所有数据

1 个答案:

答案 0 :(得分:1)

您需要合并状态中的数据,而不是覆盖它们。在您的reducer中使用传播语法可以实现以下目的

const postPomodoro = (state = [], action) => {
  switch (action.type) {
    case POSTDATA:
      return [...state, action.payload]; 

    default:
      return state;
  }
};

一旦您在化简器中更新了状态,就可以使用connect和mapStateToProps在组件中对其进行访问

const Comp = (props) => {
   // iterate over props.postTask and render
}
const mapStateProps = (state) => {
   return {
      postTask: state.postPomodoro
   }
}
export default connect(mapStateToProps)(Comp)