[React] next.js CSR, SSR, SSG 簡單實作 implement

一、CSR

  1. import { useEffect, useState } from 'react';
  2.  
  3. interface Post {
  4. userId: number,
  5. id: number,
  6. title: string,
  7. body: string,
  8. }
  9.  
  10. const Home = () => {
  11. const [post, setPost] = useState<Post>();
  12.  
  13. useEffect(() => {
  14. fetch('https://jsonplaceholder.typicode.com/posts/1')
  15. .then((res) => res.json())
  16. .then((res) => setPost(res));
  17. }, []);
  18.  
  19. return (
  20. <div>
  21. <h1>{post?.title}</h1>
  22. <p>{post?.body}</p>
  23. </div>
  24. )
  25. }
  26.  
  27. export default Home



二、SSR

  1. import type { GetServerSideProps } from 'next'
  2.  
  3. interface Post {
  4. userId: number,
  5. id: number,
  6. title: string,
  7. body: string,
  8. }
  9.  
  10. interface HomeProps {
  11. post: Post,
  12. }
  13.  
  14. const Home = ({ post }: HomeProps) => {
  15. return (
  16. <div>
  17. <h1>{post.title}</h1>
  18. <p>{post.body}</p>
  19. </div>
  20. )
  21. }
  22.  
  23. export default Home
  24.  
  25. export const getServerSideProps: GetServerSideProps = async () => {
  26. const res = await fetch('https://jsonplaceholder.typicode.com/posts/1');
  27. const post: Post = await res.json();
  28.  
  29. return {
  30. props: {
  31. post,
  32. },
  33. }
  34. };



三、SSG

  1. import type { GetStaticProps } from 'next'
  2.  
  3. interface Post {
  4. userId: number,
  5. id: number,
  6. title: string,
  7. body: string,
  8. }
  9.  
  10. interface HomeProps {
  11. post: Post,
  12. }
  13.  
  14. const Home = ({ post }: HomeProps) => {
  15. return (
  16. <div>
  17. <h1>{post.title}</h1>
  18. <p>{post.body}</p>
  19. </div>
  20. )
  21. }
  22.  
  23. export default Home
  24.  
  25. export const getStaticProps: GetStaticProps = async () => {
  26. const res = await fetch('https://jsonplaceholder.typicode.com/posts/1');
  27. const post: Post = await res.json();
  28.  
  29. return {
  30. props: {
  31. post,
  32. },
  33. }
  34. };



留言

這個網誌中的熱門文章

[面試] 日月光 設備工程師

[日文] Google日文輸入法 簡單安裝說明

[Windows] 還我 win7 相片檢視器!!