我是新手,我正在尝试发送一些数据作为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 = "";
}
所以到目前为止一切都很好,但是现在我需要在下一页即 Taskactive 中读取传递的数据,即 role_id 和 userName 。那么我们如何才能在Taskactive.jsx
中读取这些数据?
答案 0 :(得分:1)
更改此
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 :(得分:0)
如果它是用react-router渲染的组件,则传递的内容在组件props内部。
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>
答案 2 :(得分:0)
好吧,在挣扎了4天并围绕着Luna和JupiterAmy给出的答案抽搐之后,这对我有用:
在 Login.jsx
内this.props.history.push({
pathname : '/Taskactive',
state :{
role_id : responseJson.userFormat,
userName : this.userName,
userid: this.refs.usrname.value
}
}
);
和 Taskactive.jsx
中this.props.location.state.role_id
希望这对将来有帮助的人。