我对axios有此请求。如果响应没有错误,我想重定向。这是第一个问题。第二个是我尝试了react router Redirect。它重定向但没有正确加载并且当我使用ctrl + f5时。一切正常
axios.post(`/trainApi/getPrice`, request)
.then(response => {
this.props.history.push(`/api/bella/${response.data.data.reserve_id}`);
})
.catch(error => {
message.warning('some error');
});