React Router中pushState的使用方法

    xiaoxiao2021-03-25  129

    带参数页面跳转

    [javascript]  view plain  copy   this.props.history.pushState({passParam: true}, "/targetURL");   第一个参数为你页面跳转时,需要传递的参数,如果不需要传参数,则为null。

    第二个参数为跳转目标页面。

    目标页面获取参数

    [javascript]  view plain  copy   let temp = this.props.location.state;   temp则是刚才页面跳转时所传递的参数
    转载请注明原文地址: https://ju.6miu.com/read-5513.html

    最新回复(0)