From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/glossary/code_splitting/index.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 files/zh-cn/glossary/code_splitting/index.html (limited to 'files/zh-cn/glossary/code_splitting/index.html') diff --git a/files/zh-cn/glossary/code_splitting/index.html b/files/zh-cn/glossary/code_splitting/index.html new file mode 100644 index 0000000000..4c3b277fc8 --- /dev/null +++ b/files/zh-cn/glossary/code_splitting/index.html @@ -0,0 +1,25 @@ +--- +title: 代码分割 +slug: Glossary/Code_splitting +tags: + - Glossary + - Reference + - Web Performance + - code splitting + - latency +translation_of: Glossary/Code_splitting +--- +

代码分割(Code splitting )是将代码划分为可以按需/同时加载的多个 bundles 或组件。

+ +

随着应用程序日趋复杂,或仅是对其进行简单的维护,CSS 和 JavaScripts 文件以及 bundles 的大小都会随之增加,尤其是所包含的第三方库的数量和大小的增长。为了避免下载巨大的文件,可以将脚本拆分为多个较小的文件。当前页面所需的代码能够立即加载,而另外的脚本可以在与页面或应用交互后懒加载(lazy loaded),页面性能因此提升。虽然代码的总量仍然相同(甚至可能大了几个字节),但是初次加载所需的代码数量减少了。

+ +

代码分割是由 Webpack 和 Browserify 等打包工具所支持的一项功能,这些打包工具能够创建在运行时动态加载的多个 bundles。

+ +

另请参见

+ + -- cgit v1.2.3-54-g00ecf