gpt4 book ai didi

reactjs - 如何在应用程序的客户端内使用 router.replace?

转载 作者:行者123 更新时间:2023-12-04 11:30:47 28 4
gpt4 key购买 nike

我正在尝试使用 Next.js 路由器重定向未经授权的用户访问包装在 AdminLayout 中的某些页面。组件,但我收到此错误。

Error: No router instance found. You should only use "next/router" inside the client side of your app.



No router instance found
// Other imports
import Router from "next/router";

class AdminLayout extends React.Component {
render() {
const { currentUser } = this.props;

if (currentUser === undefined) {
console.log(currentUser);
return null;
}

if (currentUser == null) {
console.log(currentUser);
//this is how I tried to redirect
Router.replace("/admin/login");
}
return (
// Other irrelevant code
);
}
}

const mapStateToProps = (state) => ({
currentUser: state.user.currentUser,
});

export default connect(mapStateToProps)(AdminLayout);

有任何解决这个问题的方法吗?

最佳答案

render方法也在服务器中执行,因此您会收到异常。

通常是不好的做法 副作用 (例如重定向)在 render方法。

你应该把它放在里面 componentDidMount仅在客户端运行。

// Other imports
import Router from "next/router";

class AdminLayout extends React.Component {
componentDidMount() {
const {currentUser} = this.props;

if (currentUser === undefined) {
console.log(currentUser);
return null;
}

if (currentUser == null) {
console.log(currentUser);
//this is how I tried to redirect
Router.replace('/admin/login');
}
}
render() {
const {currentUser} = this.props;

if (currentUser === undefined) {
console.log(currentUser);
return null;
}
return (
// Other irrelevant code
);
}
}

const mapStateToProps = (state) => ({
currentUser: state.user.currentUser,
});

export default connect(mapStateToProps)(AdminLayout);

如果你想在服务器端重定向,你需要使用 getInitialProps/ getServerProps运行于 服务器 ,这些方法在服务器端它获取服务器 request & response这使您能够从服务器重定向。
class AdminLayout extends React.Component {
static getInitialProps ({ res }) {
if(someCondition) {
res.redirect('/your-path');
}
}
...
}

关于reactjs - 如何在应用程序的客户端内使用 router.replace?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62107245/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com