我是下一个 js 的初学者。我知道下一个 js 路由是如何工作的,但是浅层路由在我的项目中没有像我预期的那样工作。请分享有关它的有用资源,除了官方文档
答案 0 :(得分:0)
答案 1 :(得分:0)
你可以试试这个。
import { withRouter } from "next/router";
import Router from "next/router";
const ComponentName= ({ router }) => {
//.......
Router.replace(`/`); // here will be location
}
export default withRouter(ComponentName);
如果还是不行,就用 uesEffect()
useEffect(() => {
// you initial function
}, [router]);