嗨,我是新来的人。我打了一个服务器电话,然后成功获得响应。现在,我试图将相同的响应传递到另一条路线并显示在那儿。我无法理解,我们该如何做出反应,就像在Ember中一样,有一个方法this.transitionTo('routepath',{data}),然后此数据可在model(params)中的routepath中使用。这如何反应?我一定不会使用任何Redux或任何其他状态容器。 我的代码如下:
import React, { Component } from 'react'
import axios from 'axios'
class Ernform extends Component {
constructor (props) {
super();
this.state = {
category: '',
zipcode: '',
age: '',
gender: '',
key: '',
data: null
};
}
onChange = (e) => {
this.setState({ [e.target.name]: e.target.value });
}
getPolicies = (e) => {
e.preventDefault();
const { category, zipcode, age, gender, key } = this.state;
axios.post(`http://localhost:4000/api/v1/quote`, { category, zipcode, age, gender, key })
.then(response => {
this.setState({data: response}); // I am setting response from server to the state property data
this.props.history.push('/details', {data: this.state.data})//I am trying to pass the data and trying to transition here.
});
}
render() {
const { category, zipcode, age, gender } = this.state;
return (
<div>
<form onSubmit={this.getPolicies}>
<label>
Category: <input type="text" name="category" value={category} onChange={this.onChange}/>
</label>
<label>
Zipcode: <input type="text" name="zipcode" value={zipcode} onChange={this.onChange}/>
</label>
<label>
Age: <input type="text" name="age" value={age} onChange={this.onChange}/>
</label>
<label>
Gender: <input type="text" name="gender" value={gender} onChange={this.onChange}/>
</label>
<button className="btn btn-primary btn-lg lead" type="submit">Get Policies</button>
</form>
</div>
);
}
}
export default Ernform
我的路由器是这样:
import React from 'react'
import { Switch, Route } from 'react-router-dom'
import Ernform from './Ernform';
import Ernentry from './Ernentry'
import Erndetails from './Erndetails';
const Routing = () => (
<main>
<Switch>
<Route exact path='/' component={Ernentry}/>
<Route path='/auto' component={Ernform}/>
<Route path='/life' component={Ernform}/>
<Route path='/details' component={Erndetails}/> // added this route.
</Switch>
</main>
)
export default Routing
我的详细信息路线组件是这个
import React, { Component } from 'react'
class Erndetails extends Component {
constructor(props) { // Where would i get the data i transition with from that route.
console.log(props);
super()
}
render() {
return (
<div></div>
)
}
}
export default Erndetails
非常感谢Advance的帮助。
答案 0 :(得分:1)
针对您的问题有两种解决方案,
I)第一个解决方案是以这种方式将数据与路由一起传递到push对象中,
this.props.history.push({
pathname: '/details',
state: { detail: response.data }
})
而不是您的过去。
在详细信息路由组件中,可以通过在构造函数中使用props.location.state.detail
或在componentDidMount生命周期中使用this.props.location.state.detail
来获取数据。
2)第二个解决方案是使用localStorage.setItem('token', data)
将其存储在本地存储中,然后使用localStorage.getItem('token')
答案 1 :(得分:0)
我不认为react-router
允许。我的建议是使用LocalStorage
方法将数据存储在LocalStorage#setItem
中,然后在下一个组件中使用LocalStorage#getItem
检索数据。
您还可以将Redux用于您的状态,并在屏幕之间与它共享数据,但是由于您是初学者,它将花费更多的时间来学习它。
您还可以使用React的Context API,但作为Redux,即使比Redux容易,也要花更多的时间。