Normal loadingFor ease of viewing, the code in index.js is very simple console.log('index.js is executed') import { test } from './test.js' document.getElementById('btn-wrap').onclick = function () { test() } console.log('test.js executed') export function test() { const value = 'hello world' console.log('test value: ', value) } Add a button in index.html <button id='btn-wrap'>Click</button> Execute the webpack command: You can see that test.js is loaded when the button is not clicked. If test.js is large, loading it will consume performance. We hope to load it when we need it. Lazy LoadingModify the code in index.js console.log('index.js is executed') // import { test } from './test.js' // document.getElementById('btn-wrap').onclick = function () { //test() // } document.getElementById('btn-wrap').onclick = function () { console.log('==== Click the button') import(/*webpackChunkName:'test' */"./test") .then(({test}) => { console.log('test loaded successfully') test() }) .catch(error => { console.log('test loading failed error:', error) }) } Execute the webpack command again and view the log in the browser Only index.js is loaded before clicking the button Click the button: You can see that test.js is executed after clicking the button. PreloadingLazy loading implements on-demand loading of js files, which means they are loaded only when they are needed. However, if the js file is very large and loads slowly, loading it when it is in use will cause the page to freeze. To optimize this problem, you can use Prefetch to preload first. Not using preloadingtest.js file is not loaded until the button is clicked The test.js file will be loaded only after clicking the button Using Preload Set document.getElementById('btn-wrap').onclick = function () { console.log('==== Click the button') import(/*webpackChunkName:'test' ,webpackPrefetch:true*/"./test") .then(({test}) => { console.log('test loaded successfully') test() }) .catch(error => { console.log('test loading failed error:', error) }) } The test.js file is preloaded before clicking the button: Click the button: SummarizeNormal loading : many resources are loaded in parallel, and multiple files are loaded at the same time Lazy loading : loading only when needed Preloading : Wait until other resources are loaded and the browser is idle, then secretly load the resources set to be preloaded This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: What are the similarities between the development of web design and western architecture?
>>: Detailed process of changing apt source to Alibaba Cloud source in Ubuntu 18.04
In react-router, the jump in the component can be...
1. Introduction to Varnish Varnish is a high-perf...
1. Use xshell to connect to the virtual machine, ...
Will mysql's IN invalidate the index? Won'...
CentOS6.9+Mysql5.7.18 source code installation, t...
The communication modes of vue3 components are as...
Preface First, let me introduce Keepalived, which...
Preface As you know, Linux supports many file sys...
What is MIME TYPE? 1. First, we need to understand...
Preface: I have often heard about database paradi...
This article example shares the specific code of ...
When the scale of Docker deployment becomes large...
<br />Recently, UCDChina wrote a series of a...
Content Detail Tags: <h1>~<h6>Title T...
Table of contents 1. Download 2. Installation and...