我在 NextJs 应用程序中使用了两个库:next-firebase-auth
和next-redux-wrapper
. getServerSideProps
它们都要求我用它们各自的功能进行包装。
为了next-firebase-auth
export const getServerSideProps = withAuthUserSSR()(async ({ AuthUser }) => {
// Some code
})
为了next-redux-wrapper
export const getServerSideProps = wrapper.getServerSideProps(
({store}) => {
// Some code
}
);
两者都单独工作,但我无法让两者同时工作。NextJs 只允许getServerSideProps
声明一次。是否有可能以某种方式组合多个包装器?