简体   繁体   中英

How to use redux for data fetching in Next.js

So previously I migrated my code to use Redux in my Next.js project. Althought it made it easier to scale, I do still have some issues with it.

Basically I used to fetch data from the getServerSideProps server in the previous version. But it becomes more complex when I think about fetching from a redux action.

BTW, I am using redux-thunk.

Here is my code:

action.js

export const FetchPosts = () => async (dispatch: Dispatch) => {
    const { data } = await api.fetchPosts();
    dispatch({ type: FETCH_ALL, payload: data });
}

reducer.js

export default (state: any = [], action: AnyAction) => {
    switch (action.type) {
        case FETCH_ALL:
            return [...state, action.payload.data]
        default:
            return state;
    }
}

component.tsx

const Component:FC = () => {
    
    const dispatch = useDispatch();
    const posts = useSelector(state => state.posts);

    useEffect(() => {
      // Should i fetch in here?
      dispatch(getPosts());
    }, []);

    return (
        <div>
          {/* ... */}
        </div>
    );
}

export async function getServerSideProps() { 

  // Should i even fetch here?

  return {
    props: { posts }
  }
}

Can anyone help?

If the data that you are fetching important for SEO purpose you should be fetching data in getServerSideProps . So, when the server ships the HTML to the client side, your html will be populated with the data (imagine you have an ecommerce store and you want to index your shopping item ). BUt to use the serverside redux, you should be implementing next-redux-wrapper

If the data is not important for SEO, for example, admin needs to view the user data, you can fetch the data on the client-side.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM