跳到内容

懒加载

Next.js 中的懒加载 通过减少渲染路由所需的 JavaScript 代码量,帮助提高应用程序的初始加载性能。

它允许你延迟加载客户端组件和导入的库,仅在需要时将其包含在客户端捆绑包中。例如,你可能希望延迟加载模态框,直到用户单击打开它。

在 Next.js 中,可以通过两种方式实现懒加载

  1. 使用带有 next/dynamic动态导入
  2. 使用带有 SuspenseReact.lazy()

默认情况下,服务器组件会自动进行代码拆分,你可以使用流式处理来逐步将 UI 片段从服务器发送到客户端。懒加载适用于客户端组件。

next/dynamic

next/dynamicReact.lazy()Suspense 的组合。它在 apppages 目录中的行为方式相同,以允许增量迁移。

示例

导入客户端组件

app/page.js
'use client'
 
import { useState } from 'react'
import dynamic from 'next/dynamic'
 
// Client Components:
const ComponentA = dynamic(() => import('../components/A'))
const ComponentB = dynamic(() => import('../components/B'))
const ComponentC = dynamic(() => import('../components/C'), { ssr: false })
 
export default function ClientComponentExample() {
  const [showMore, setShowMore] = useState(false)
 
  return (
    <div>
      {/* Load immediately, but in a separate client bundle */}
      <ComponentA />
 
      {/* Load on demand, only when/if the condition is met */}
      {showMore && <ComponentB />}
      <button onClick={() => setShowMore(!showMore)}>Toggle</button>
 
      {/* Load only on the client side */}
      <ComponentC />
    </div>
  )
}

注意: 当服务器组件动态导入客户端组件时,目前支持自动代码拆分

跳过 SSR

当使用 React.lazy() 和 Suspense 时,客户端组件默认会被预渲染 (SSR)。

注意: ssr: false 选项仅适用于客户端组件,请将其移至客户端组件中,以确保客户端代码拆分正常工作。

如果你想禁用客户端组件的预渲染,可以使用设置为 falsessr 选项

const ComponentC = dynamic(() => import('../components/C'), { ssr: false })

导入服务器组件

如果你动态导入服务器组件,则只有作为服务器组件子级的客户端组件才会被懒加载 - 服务器组件本身不会。当你在服务器组件中使用静态资源(如 CSS)时,它也会帮助预加载这些资源。

app/page.js
import dynamic from 'next/dynamic'
 
// Server Component:
const ServerComponent = dynamic(() => import('../components/ServerComponent'))
 
export default function ServerComponentExample() {
  return (
    <div>
      <ServerComponent />
    </div>
  )
}

注意:服务器组件不支持 ssr: false 选项。如果您尝试在服务器组件中使用它,您将看到一个错误。服务器组件中的 next/dynamic 不允许使用 ssr: false。请将其移至客户端组件中。

加载外部库

可以使用 import() 函数按需加载外部库。此示例使用外部库 fuse.js 进行模糊搜索。该模块仅在用户在搜索输入框中键入内容后才在客户端加载。

app/page.js
'use client'
 
import { useState } from 'react'
 
const names = ['Tim', 'Joe', 'Bel', 'Lee']
 
export default function Page() {
  const [results, setResults] = useState()
 
  return (
    <div>
      <input
        type="text"
        placeholder="Search"
        onChange={async (e) => {
          const { value } = e.currentTarget
          // Dynamically load fuse.js
          const Fuse = (await import('fuse.js')).default
          const fuse = new Fuse(names)
 
          setResults(fuse.search(value))
        }}
      />
      <pre>Results: {JSON.stringify(results, null, 2)}</pre>
    </div>
  )
}

添加自定义加载组件

app/page.js
'use client'
 
import dynamic from 'next/dynamic'
 
const WithCustomLoading = dynamic(
  () => import('../components/WithCustomLoading'),
  {
    loading: () => <p>Loading...</p>,
  }
)
 
export default function Page() {
  return (
    <div>
      {/* The loading component will be rendered while  <WithCustomLoading/> is loading */}
      <WithCustomLoading />
    </div>
  )
}

导入命名导出

要动态导入命名导出,您可以从 import() 函数返回的 Promise 中返回它

components/hello.js
'use client'
 
export function Hello() {
  return <p>Hello!</p>
}
app/page.js
import dynamic from 'next/dynamic'
 
const ClientComponent = dynamic(() =>
  import('../components/hello').then((mod) => mod.Hello)
)