小白使用React---ajax请求成功后跳转到另一个页面

前端之家收集整理的这篇文章主要介绍了小白使用React---ajax请求成功后跳转到另一个页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$.ajax({
                type:"GET",url:this.url,dataType:"json",success:function (result) {
                    if(result.Meta.success===true){
                        that.setState({contents: result.data});
                        let content=JSON.stringify(result.data);
                        localStorage.setItem("searchlists",content);
                        that.props.history.push( '/srmp/v1/contents',null)
                    }
                },error:function(xhr,status,err) {
                    console.error( status,err.toString());
                    // hashHistory.push('/srmp/v1/contents')
                    // const win = window.open('/srmp/v1/contents','_blank');
                    // win.focus();
                    // browserHistory.push('/srmp/v1/contents');
                    // that.props.history.push( '/srmp/v1/contents',null)
                }
            });

加红色的这句话

第一个参数是跳转路由,path

第二个参数是state,想要传入的参数


路由传参的三种方法

http://blog.csdn.net/qq_23158083/article/details/68488831

原文链接:https://www.f2er.com/react/302193.html

猜你在找的React相关文章