有没有一种方法可以让我们拥有类似于在client-side
上获取数据时的加载状态?
我想要加载状态的原因是具有类似加载 backbone 的东西,例如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',
}
})(),
}
}
5条答案
按热度按时间ha5z0ras1#
您可以修改_app.js组件以在getServerSideProps执行类似FETCH的异步工作时显示加载组件,如https://stackoverflow.com/a/60756105/13824894所示。这将适用于您的应用程序中的每个页面过渡。
您仍然可以在客户端独立使用加载逻辑。
flmtquvp2#
您可以在_app.js上设置加载状态
ldxq2e6h3#
我还没有尝试过这一功能,但理论上我认为它应该会起作用。如果您想要的只是让客户端通过服务器道具访问Promise,请尝试如下所示。基本上,您的道具是一个异步的lambda函数,因此您可以在其中执行任何必要的工作,例如获取数据等,因此客户端应该将道具作为承诺访问并等待它。
pdtvr36n4#
我的选择是使用useRouter对象的isReady方法
f5emj3cl5#
这对我使用MUI V.5很有效