web-dev-qa-db-ja.com

React:history.pushでパラメーターとして渡されたデータを読み取る

私は反応が初めてで、history.Pushのパラメーターとしていくつかのデータを送信しようとしています。

基本的に、ボタンクリックでメソッドを呼び出し、メソッド内でAPIを呼び出しています。成功の応答を受け取った場合、他のページにリダイレクトし、いくつかのデータも渡す必要があります。

以下はそのための私のコードです:

class Login extends Component  {

  constructor(props) {
    super(props);
    this.state = {
      enteredName: null,
      enteredPwd: null,
      rescode: null,
      userName: null,
      formatDesc: null,
      userFormat : null,
      success: false,
      responseJson : null,
    };
  }

  state = {
    enteredName: null,
    enteredPwd: null,
    rescode: null,
    userName: null,
    formatDesc: null,
    userFormat : null,
    success: false,
    responseJson : null,
  }
    render=() =>{

        return (
          <Router>
          <div id= "login-page">
            <div className="back-image" style={{height:"100vh"}}>
              <div className="container">
                <form className="form-login" action="index.html">
                  <h2 className="form-login-heading">sign in now</h2>
                  <div className="login-wrap">
                    <label>User ID</label>
                    <input type="text" ref="usrname" className="form-control" placeholder="User ID" autofocus/>
                    <br/>
                    <label>Password</label>
                    <input type="password" ref = "password" className="form-control" placeholder="Password"/>
                    <br/>
                    <a  className="btn btn-theme btn-block" onClick={this.login.bind(this)}><i className="fa fa-lock mr-10"/>SIGN IN</a>
                    <Dialog ref={(component) => { this.dialog = component }} />
                  </div>
                </form>
              </div>
            </div>
          </div>
          </Router>
        );

}
login = (e) => {
  e.preventDefault();

  fetch('some url', {
    method: 'POST',
    body: JSON.stringify({
      "userId": this.refs.usrname.value,
      "password": this.refs.password.value
    })
  })
    .then((response) => response.json())
    .then((responseJson) => {
      console.log(`response: ` , responseJson)
      if (responseJson.errorCode === '00') {
        this.setState({ rescode: responseJson.errorCode })
        this.setState({ userName: responseJson.userName })
        this.setState({ formatDesc: responseJson.formatDesc });
        this.setState({userFormat : responseJson.userFormat});
        this.setState({success : true});
        this.setState({responseJson: responseJson});
        this.props.history.Push(
          '/Taskactive',
          {
            role_id : this.userFormat,
            userName : this.userName
          }
        );
      }
      else {
        alert("Error Logging in.." + responseJson.errorMsg);
        this.refs.usrname.value = "";
        this.refs.password.value = "";
      }

    })
    .catch((error) => {
      console.error(error);
    });

  this.refs.usrname.value = "";
  this.refs.password.value = "";
}

だから今まではすべて問題ありませんが、今渡されたデータを読み取る必要がありますrole_idserName次のページでTaskactiveです。では、これらのデータをTaskactive.jsxでどのように読み取ることができますか?

これを変える

this.props.history.Push(
          '/Taskactive',
          {
            role_id : this.userFormat,
            userName : this.userName
          }
        );

これに:

this.props.history.Push({
          pathname: '/Taskactive',
          appState: {
            role_id : this.userFormat,
            userName : this.userName
          }
        });

パス/ Taskactiveに対してレンダリングしているコンポーネント内で、this.props.location.appState.role_idまたはthis.props.location.appState.userNameとして値にアクセスできます。また、Object(状態として保持されます)。

お役に立てれば。

1
JupiterAmy

そのコンポーネントがreact-routerでレンダリングされる場合、渡されるものはコンポーネントプロップ内にあります。

console.log(this.props.match.params)

私が見たところ、あなたのルーターの設定は間違っています。ログインは<Router>の子である必要があり、コンテナルーターは使用しないでください。

設定例:

<Router>
  <Switch>
    <Route exact path="/" component={Login} />
    <Route path="/login" component={Login} />
    <Route path="/signup" component={Signup} />
    <Route path="/restore-password" component={RestorePass} />
    <Route path="/forgot-password" component={ForgotPass} />
  </Switch>
</Router>
0
Luna