摘要:
防抖:动作绑定事件,动作发生后一定时间后触发事件,在这段时间内,如果该动作又发生,则重新等待一定时间再触发事件。 function debounce(func, time) { let timer = null; return () => { clearTimeout(timer); timer = 阅读全文
摘要:
同步加载 3.1 安装模块 cnpm i webpack webpack-cli html-webpack-plugin clean-webpack-plugin -D 3.2 webpack.config.js const path = require("path"); const HtmlWeb 阅读全文
摘要:
1. 跟目录下添加 .env 文件 NODE_ENV= development 2.安装插件 # with npm npm install dotenv # or with Yarn yarn add dotenv 3. webpack.config.js 添加配置 const dotenv = r 阅读全文