https://nextjs.frontendx.cn/docs/#%E8%B7%AF%E7%94%B1

    1. import React from 'react'
    2. export default class extends React.Component {
    3. static async getInitialProps({ req }) {
    4. const res = await fetch('https://api.github.com/repos/zeit/next.js')
    5. const json = await res.json()
    6. return { stars: json.stargazers_count }
    7. }
    8. render() {
    9. return (
    10. <div>
    11. Hello World {this.props.stars}
    12. </div>
    13. )
    14. }
    15. }