React-Router外部链接 [英] React-Router External link

查看:1008
本文介绍了React-Router外部链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

由于我正在使用react-router来处理反应应用程序中的路由,我很好奇是否有办法重定向到外部资源。

Since I'm using react-router to handle my routes in a react app, I'm curious if there is a way to redirect to an external resource.

说某人点击:

example.com/privacy-policy

我希望它重定向到:

example.zendesk.com/hc/en-us/articles/123456789-隐私政策

我正在寻找零帮助,以避免在我的index.html加载时在普通JS中编写它,例如:

I'm finding exactly zero help in avoiding writing it in plain JS at my index.html loading with something like:

if ( window.location.path === "privacy-policy" ){
  window.location = "example.zendesk.com/hc/en-us/articles/123456789-Privacy-Policies"
}


推荐答案

我实际上最终建立了自己的组件。 <重定向>
它从 react-router 元素中获取信息,以便我可以保留在我的路线。例如:

I actually ended up building my own Component. <Redirect> It takes info from the react-router element so I can keep it in my routes. Such as:

<Route
  path="/privacy-policy"
  component={ Redirect }
  loc="https://meetflo.zendesk.com/hc/en-us/articles/230425728-Privacy-Policies"
  />

这是我的组件 - 任何人都很好奇:

Here is my component incase-anyone is curious:

import React, { Component } from "react";

export class Redirect extends Component {
  constructor( props ){
    super();
    this.state = { ...props };
  }
  componentWillMount(){
    window.location = this.state.route.loc;
  }
  render(){
    return (<section>Redirecting...</section>);
  }
}

export default Redirect;

编辑 - 注意:
这是 react-router :3.0.5 ,在4.x

EDIT -- NOTE: This is with react-router: 3.0.5, it is not so simple in 4.x

这篇关于React-Router外部链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆