有没有一种方法可以让我们拥有类似于在 上获取数据时的加载状态client-side
?
我想要一个加载状态的原因是有一个加载骨架之类的东西,例如react-loading-skeleton
在客户端,我们可以这样做:
import useSWR from 'swr'
const fetcher = (url) => fetch(url).then((res) => res.json())
function Profile() {
const { data, error } = useSWR('/api/user', fetcher)
if (error) return <div>failed to load</div>
if (!data) return <div>loading...</div>
return <div>hello {data.name}!</div>
}
但是对于 SSR (getServerSideProps),我不知道这是否可行,例如我们可以有一个加载状态吗?
function AllPostsPage(props) {
const router = useRouter();
const { posts } = props;
function findPostsHandler(year, month) {
const fullPath = `/posts/${year}/${month}`;
router.push(fullPath);
}
if (!data) return <div>loading...</div>; // Would not work with SSR
return (
<Fragment>
<PostsSearch onSearch={findPostsHandler} />
<PosttList items={posts} />
</Fragment>
);
}
export async function getServerSideProps() {
const posts = await getAllPosts();
return {
props: {
posts: posts,
},
};
}
export default AllPostsPage;
最近 Next.js 发布了getServerSideProps should support props value as Promise
https://github.com/vercel/next.js/pull/28607
有了它,我们可以做出承诺,但不确定如何实现它并拥有加载状态,或者这是否可以实现。他们的例子表明:
export async function getServerSideProps() {
return {
props: (async function () {
return {
text: 'promise value',
}
})(),
}
}