English 中文(简体)
Redirect isn ́t working, Invalid redirect debate
原标题:Redirect isn´t working, Invalid redirect arguments

I have this code... I´m using it correctly... I´m using nextjs 14.0.4

我搜索了胎儿,在大多数情况下,它都行之有效。

 use client 
import { redirect } from "next/dist/server/api-utils";



export default function ProfilePage() {
    const session = useSession();
    const { status } = session;
    console.log(session);

    if (status ===  loading ) {
        return false;
    }


    if (status ===  unauthenticated ) {
        redirect("/")
    }
}

这表明我这一错误:

Unhandled Runtime Error Error: Invalid redirect arguments. Please use a single argument URL, e.g. res.redirect( /destination ) or use a status code and URL, e.g. res.redirect(307, /destination ).

问题回答

我只是重新启用服务器以解决这个问题。





相关问题
拆除月度边界(实际大型日历)

采用大型反应日历的Im, 并想要清除包罗日历的边界。 以及如何改变日记栏和日记的颜色? 如何使其发挥作用?

表中未显示的元数据

我将元件定义为如下文所示,但是在我的剪辑中,它没有显示“当地:3000/#home”。 我的所有jsx档案都有“用户”bc。

NextJS 13 Data Fetching

Is there anyway of custom baseURL for their fetch method? For example in axios: const instance = axios.create({ baseURL: https://some-domain.com/api/ , timeout: 1000, headers: { X-Custom-Header ...

热门标签