React Router v4 在表单提交时重定向

IT技术 reactjs react-router-v4
2021-04-09 13:56:13

全新的react,尝试在“登录”页面上单击提交后重定向到“主页”。尝试按照react-router教程进行操作。

当我单击表单上的提交按钮并控制台记录状态和 fakeAuth.isAuthenticated 时,它们都返回 true。但是,重定向不会触发。

登录.js

class Login extends Component {
    constructor(props) {
        super(props);
        this.state = {
            portalId: "",
            password: "",
            redirectToReferrer: false
        }

        this.handleSubmit = this.handleSubmit.bind(this);
    }


    handleSubmit(e) {
        fakeAuth.authenticate(() => {
            this.setState({
                portalId: this.refs.portalId.value,
                password: this.refs.password.value,
                redirectToReferrer: true
            })
        })
        e.preventDefault();
    }


    render() {
        const redirectToReferrer = this.state.redirectToReferrer;
        if (redirectToReferrer === true) {
            <Redirect to="/home" />
        }

路由.js

export const fakeAuth = {
    isAuthenticated: false,
    authenticate(cb) {
        this.isAuthenticated = true
        setTimeout(cb, 100)
    },
    signout(cb) {
        this.isAuthenticated = false
        setTimeout(cb, 100)
    }
}

const PrivateRoute = ({ component: Component, ...rest }) => (
    <Route {...rest} render={() => (
        fakeAuth.isAuthenticated === true
        ? <Component {...this.props}/>
        : <Redirect to="/" />
    )}/> 
)


export default () => (
    <BrowserRouter>
        <div>
            <Navbar />
            <Switch>
                <Route path="/" exact component={Login} />
                <Route path="/register" exact component={Register} />
                <Route path="/home" exact component={Home} />
            </Switch>
        </div>
    </BrowserRouter>
);
4个回答

你必须Redirect在 render 方法中返回(否则它不会被渲染,因此不会发生重定向):

  render() {
        const redirectToReferrer = this.state.redirectToReferrer;
        if (redirectToReferrer) {
            return <Redirect to="/home" />
        }
        // ... rest of render method code
   }
@VincentNguyen 不客气。如果对您有帮助,请点赞并接受答案:)
2021-05-29 13:56:13
谢谢,这有效。应该早点发布,而不是在这上面浪费很多时间。
2021-06-09 13:56:13

我现在能够通过交换来重定向到“主页”<Redirect to="/home" />this.props.history.push("/home");使用withRouter不知道为什么第一种方法不起作用。

有一篇关于 usinghistory.pushredirectat之间区别的有用帖子tylermcginnis.com/react-router-programmatically-navigate
2021-05-27 13:56:13
你能举一个你在哪里添加的例子吗?@文森特阮
2021-06-03 13:56:13

对于使用Hooks 的人,请看这里 -> https://reactrouter.com/web/api/Hooks/usehistory 使用示例:

import { useHistory } from "react-router-dom";
let history = useHistory();
        
const onSubmit = () => {
    //code
    history.push(`/${link}/${object.id}`)
}
谢谢,这也适用于我。
2021-06-08 13:56:13

当我们在路由器声明之外使用时。你可以使用

this.props.history.push('/url')

在您的函数调用中。应该与 react-router-dom 一起使用