ReactJS _硬重定向

时间:2019-02-18 11:11:53

标签: reactjs axios

我对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');
            });

0 个答案:

没有答案