更新用户名后

时间:2018-10-02 05:34:41

标签: reactjs redux

我开始学习React。更改名称后,个人资料页面不会更新。 该请求正在处理中,我得到了预期的结果,用户名已更新,但配置文件页面未重新加载,请告诉我如何解决。事实是,我在用户记录页面上也有类似的问题,并且在添加记录时也有类似的情况,它在重新加载页面后也会出现。我不会使组件更新成功吗?

组件:

import React, { Component } from 'react';
import {connect} from 'react-redux';
import {users} from "../actions";


class ProfilePage extends Component {

state = {
    text: ""
};

submitName = (e) => {
    e.preventDefault();
    this.props.updateName(this.props.user.id, this.state.text).then(this.resetForm);
    this.setState({text: ""});
};

render() {
    return (
        <div>
            <div>
                <h3>{this.props.user.username}</h3>
                <span>Edit name</span>
                <form onSubmit={this.submitName}>
                  <input
                    value={this.state.text}
                    placeholder="Enter note here..."
                    onChange={(e) => this.setState({text: e.target.value})}
                    required />
                  <input type="submit" value="Save Name" />
                </form>
            </div>
            <p>{this.props.user.id}</p>
        </div>
    )
};
}

const mapStateToProps = state => {
return {
   user: state.auth.user,
}
};

const mapDispatchToProps = dispatch => {
return {
  updateName: (id, newname) => {
    return dispatch(users.updateName(id, newname));
  },
}
};

export default connect(mapStateToProps, mapDispatchToProps)(ProfilePage);

动作:

export const updateName = (userId, newname) => {
  return (dispatch, getState) => {

    let headers = {"Content-Type": "application/json", 'Access-Control-Allow-Origin': 'http://localhost:3000'};
    let {token} = getState().auth;

    if (token) {
       headers["Authorization"] = `Token ${token}`;
    }

    let body = JSON.stringify({"username":newname});

    return fetch(`/api/users/${userId}/`, {headers, method: "PUT", body})
    .then(res => {
    if (res.status < 500) {
      return res.json().then(data => {
        return {status: res.status, data};
      })
    } else {
      console.log("Server Error!");
      throw res;
    }
    })
    .then(res => {
    if (res.status === 200) {
      return dispatch({type: 'UPDATE_USERNAME', user: res.data, userId});
    } else if (res.status === 401 || res.status === 403) {
      dispatch({type: "AUTHENTICATION_ERROR", data: res.data});
      throw res.data;
    }
  })
 }
};

减速器:

const initialState = [];
export default function users(state=initialState, action) {

  switch (action.type) {

    case 'FETCH_USER':
      return [...state, ...action.user];

    case 'UPDATE_USERNAME':
      return [...state, ...action.user];

    default:
     return state;
 }

}

1 个答案:

答案 0 :(得分:1)

使用Redux,您正在更新道具,这不会触发页面渲染。 如果您尚未在resetForm函数中进行更新,请确保在更新道具后进行状态更改。

this.props.updateName(this.props.user.id, this.state.text)
.then(()=>{this.resetForm(); this.setState({text: ""});
});

或者,在更新道具之后,您可以使用this.forceUpdate。 另一个选择是使用getDerivedStateFromProps函数。每当道具发生变化时,就会调用此方法。如果此函数返回了状态更改,则页面将呈现。