标签:完整 for red put 一级路由 端口号 war 转换 location
如:http://172.16.87.204:8900/?s=1#/invoiceLottery/lotteryRecord?ss=22 href: "http://172.16.87.204:8900/?s=1#/invoiceLottery/lotteryRecord?ss=22" hash: "#/invoiceLottery/lotteryRecord?ss=22" search: "?s=1" host: "172.16.87.204:8900" hostname: "172.16.87.204" pathname: "/"
2、浏览器history(浏览器历史记录)
history.back(); // 返回上级 (history.go(-1)) history.forward(); // 跳转到下个页面(history.go(1)) history.go(); // 用于指定页跳转
history.location // 当前页面所在位置 history.push({ pathname: ‘/new-place‘ }); // 路由跳转 history.replace({ pathname: ‘/new-place‘ }); // 路由跳转(覆盖式) history.goBack(); // 返回上一个页面 history.goForward(); // 跳转下一个页面 history.go(); // 用于指定页跳转 history.listen(); // 监听地址变化,执行相关操作
routerRedux.push(); routerRedux.replace(); routerRedux.goBack(); // 返回上一级路由(会刷新页面) // model里面使用 yield put(routerRedux.goBack());
标签:完整 for red put 一级路由 端口号 war 转换 location
原文地址:https://www.cnblogs.com/alisadream/p/10185196.html