admin管理员组文章数量:1341735
I'm using Next.js version 13 app route and am having trouble with the revalidate feature not triggering after a router.push call.
In my project, I allow users to create blog posts on the /blog/create page. If the post is successfully added to the database, I use router.push to navigate to the /blog page.
However, after the navigation, it seems that the /blog page is still using the old data and revalidate is not triggering to fetch the updated data.
Therefore, the new post is not displayed.
I've tried setting revalidate to 0 of the /blog page to ensure that the data is fetched via server-side rendering, but it doesn't seem to work.
Currently, I can only see the new blog post by hard refreshing the /blog page or by clicking the navbar button to navigate to the /blog page again.
Is there a way to force revalidate to trigger after a router.push call or a workaround for this issue? Any help would be greatly appreciated. Thank you!
/blog, page.tsx:
export const revalidate = 0;
//export const fetchCache = "no-cache";
async function getData() {
const postsDocRef = collection(firestore, "posts");
const q = query(postsDocRef, orderBy("createdAt", "desc"), limit(10));
const data = await getPosts(q);
return data;
}
const Blogs = async (): Promise<JSX.Element> => {
const posts = await getData();
return <BlogContainer posts={posts} />;
};
export default Blogs;
Create post:
const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();
const {
content,
} = formik.values;
const success = await createPost(
content
); //createPost is a function to create new post with try catch block, finally return true if no error
if (success) {
router.push("/blogs");
}
};
I'm using Next.js version 13 app route and am having trouble with the revalidate feature not triggering after a router.push call.
In my project, I allow users to create blog posts on the /blog/create page. If the post is successfully added to the database, I use router.push to navigate to the /blog page.
However, after the navigation, it seems that the /blog page is still using the old data and revalidate is not triggering to fetch the updated data.
Therefore, the new post is not displayed.
I've tried setting revalidate to 0 of the /blog page to ensure that the data is fetched via server-side rendering, but it doesn't seem to work.
Currently, I can only see the new blog post by hard refreshing the /blog page or by clicking the navbar button to navigate to the /blog page again.
Is there a way to force revalidate to trigger after a router.push call or a workaround for this issue? Any help would be greatly appreciated. Thank you!
/blog, page.tsx:
export const revalidate = 0;
//export const fetchCache = "no-cache";
async function getData() {
const postsDocRef = collection(firestore, "posts");
const q = query(postsDocRef, orderBy("createdAt", "desc"), limit(10));
const data = await getPosts(q);
return data;
}
const Blogs = async (): Promise<JSX.Element> => {
const posts = await getData();
return <BlogContainer posts={posts} />;
};
export default Blogs;
Create post:
const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();
const {
content,
} = formik.values;
const success = await createPost(
content
); //createPost is a function to create new post with try catch block, finally return true if no error
if (success) {
router.push("/blogs");
}
};
Share
asked Jun 3, 2023 at 8:02
Tom FanTom Fan
5525 silver badges21 bronze badges
2 Answers
Reset to default 10For now, the solution that i found is by using bination of router.refresh
& useTransition
hook:
import { useRouter } from 'next/navigation';
import { useTransition } from 'react'
const Page = () => {
const router = useRouter();
const [isPending, startTransition] = useTransition();
const onSubmit = () => {
const url = '/blogs'
startTransition(() => router.push(url));
startTransition(() => router.refresh());
}
if (isPending) {
return (
<div>Loading...</div>
)
}
return // Component
}
Source: Next.js Issue
For those who have the same issue in Next 14, you can use revalidatePath
from 'next/cache'
. Please, note that it must be called on the server side:
'use server'
import { revalidatePath } from 'next/cache'
export default async function revalidate(path: string) {
revalidatePath(path)
}
Then you can call this action and pass your path that you want to revalidate
.
In the example code the author provided this action must be called before router.push("/blogs")
:
await revalidate("/blogs")
本文标签: javascriptNextjs V13 revalidate not triggering after routerpushStack Overflow
版权声明:本文标题:javascript - Next.js V13: revalidate not triggering after router.push - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743683611a2521530.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论