Next.JS: How to make ALL requests server-side

后端 未结 3 1681
星月不相逢
星月不相逢 2021-02-02 02:45

I am building a Next.JS app that will be getting data from a Python API and an Postgres Database.

Normally this would be simple, except requirements are such that I need

3条回答
  •  迷失自我
    2021-02-02 03:24

    I found a solution by wrapping Next.JS in Express!

    I have pushed a simple example project to GitHub here

    The repo has a nice README as well as comments in the code that detail what's going on.

    Quick rundown:

    • Wrap Next.JS in an express server. Explicitly render pages by calling nextApp.render(...) which happens implicitly in standard Next.JS apps. See server.js
    • Use express routing. Make server-side requests prior to rendering the pages with nextApp.render(...). See server.js.
    • Use standard anchor tags to ensure that pages requests hit the express server. See index.js
    • nextApp.render provides passed values to the page in the context (ctx) parameter of getInitialProps. You can make these values available in the pages this.props by returning them in getInitialProps. See stars.js

    Suggestions and improvements welcome!

提交回复
热议问题