天分高的人如果懒惰成性,亦即不自努力以发展他的才能,则其成就也不会很大,有时反会不如天分比他低些的人。——茅盾

书接上文,首先对上次的项目进行改造,参考:https://webpack.docschina.org/guides/asset-management/

main.js改为bundle.js

index.html

1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>管理资源</title>
</head>
<body>
<script src="bundle.js"></script>
</body>
</html>

webpack.config.js

1
2
3
4
5
6
7
8
9
const path = require('path');

module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
};

为了在 JavaScript 模块中 import 一个 CSS 文件,你需要安装 style-loadercss-loader,并在 module 配置 中添加这些 loader:

1
npm install --save-dev style-loader css-loader

webpack.config.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const path = require('path');

module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
],
},
};
Tip

webpack 根据正则表达式,来确定应该查找哪些文件,并将其提供给指定的 loader。在这个示例中,所有以 .css 结尾的文件,都将被提供给 style-loadercss-loader

这使你可以在依赖于此样式的 js 文件中 import './style.css'。现在,在此模块执行过程中,含有 CSS 字符串的 <style> 标签,将被插入到 html 文件的 <head> 中。

我们尝试一下,通过在项目中添加一个新的 style.css 文件,并将其 import 到我们的 index.js 中:

style.css

1
2
3
.hello {
color: red;
}

index.js

1
2
3
4
5
6
7
8
9
10
11
12
13
import _ from 'lodash';
import './style.css';
function component() {
const element = document.createElement('div');

// lodash 在当前 script 中使用 import 引入
element.innerHTML = _.join(['Hello', 'webpack'], ' ');
element.classList.add('hello');

return element;
}

document.body.appendChild(component());

执行

1
npm run build

image-20220821130434859

查看页面元素

image-20220821131155153

接下来轮到image了,首先在webpack.config.js中,配置pngjpg等图片格式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const path = require('path');

module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: 'asset/resource',
},
],
},
};

现在,import MyImage from './my-image.png'中的图片路径会被识别且替换为output后的真正路径

我们加一个图片:

image-20220821224332350

然后在index.js使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import _ from 'lodash';
import './style.css';
import Icon from './icon.png';

function component() {
const element = document.createElement('div');

// lodash 在当前 script 中使用 import 引入
element.innerHTML = _.join(['Hello', 'webpack'], ' ');
element.classList.add('hello');

// 将图像添加到我们已经存在的 div 中。
const myIcon = new Image();
myIcon.src = Icon;

element.appendChild(myIcon);

return element;
}

document.body.appendChild(component());

src/style.css

1
2
3
4
.hello {
color: red;
background: url('./icon.png');
}

重新构建

1
npm run build

image-20220821225442580

对于字体

webpack.config.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const path = require('path');

module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: 'asset/resource',
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/i,
type: 'asset/resource',
},
],
},
};

然后添加字体文件

image-20220821232511909

style.css中使用

1
2
3
4
5
6
7
8
9
10
11
12
13
@font-face {
font-family: 'MyFont';
src: url('./my-font.woff2') format('woff2'),
url('./my-font.woff') format('woff');
font-weight: 600;
font-style: normal;
}

.hello {
color: red;
font-family: 'MyFont';
background: url('./icon.png');
}

由于我这里是图标,所以顺带我们将图标代码写上

index.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import _ from 'lodash';
import './style.css';
import Icon from './icon.png';

function component() {
const element = document.createElement('div');

// lodash 在当前 script 中使用 import 引入
element.innerHTML = _.join(['Hello', 'webpack'], '&#xe6eb; ');
element.classList.add('hello');

// 将图像添加到我们已经存在的 div 中。
const myIcon = new Image();
myIcon.src = Icon;

element.appendChild(myIcon);

return element;
}

document.body.appendChild(component());

再次编译

1
npm run build

可以看到图标字体生效

image-20220821232940120

此外,可以加载的有用资源还有数据,如 JSON 文件,CSV、TSV 和 XML。类似于 NodeJS,JSON 支持实际上是内置的,也就是说 import Data from './data.json' 默认将正常运行。要导入 CSV、TSV 和 XML,你可以使用 csv-loaderxml-loader。让我们处理加载这三类文件:

1
npm install --save-dev csv-loader xml-loader

webpack.config.js配置规则

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const path = require('path');

module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: 'asset/resource',
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/i,
type: 'asset/resource',
},
{
test: /\.(csv|tsv)$/i,
use: ['csv-loader'],
},
{
test: /\.xml$/i,
use: ['xml-loader'],
},
],
},
};

添加数据文件data.xmldata.csv

src/data.xml

1
2
3
4
5
6
7
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Mary</to>
<from>John</from>
<heading>Reminder</heading>
<body>Call Cindy on Tuesday</body>
</note>

src/data.csv

1
2
3
4
to,from,heading,body
Mary,John,Reminder,Call Cindy on Tuesday
Zoe,Bill,Reminder,Buy orange juice
Autumn,Lindsey,Letter,I miss you

导入文件,会自动处理为json

src/index.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import _ from 'lodash';
import './style.css';
import Icon from './icon.png';
import Data from './data.xml';
import Notes from './data.csv';

function component() {
const element = document.createElement('div');

// lodash 在当前 script 中使用 import 引入
element.innerHTML = _.join(['Hello', 'webpack'], '&#xe6eb; ');
element.classList.add('hello');

// 将图像添加到我们已经存在的 div 中。
const myIcon = new Image();
myIcon.src = Icon;

element.appendChild(myIcon);

console.log({ Data });
console.log({ Notes });

return element;
}

document.body.appendChild(component());

编译

1
npm run build

可以看到控制台成功打印

image-20220821234941221

自定义 JSON 模块 parser

通过使用 自定义 parser 替代特定的 webpack loader,可以将任何 tomlyamljson5 文件作为 JSON 模块导入。

新建一个src/data.toml

1
2
3
4
5
6
7
title = "TOML Example"

[owner]
name = "Tom Preston-Werner"
organization = "GitHub"
bio = "GitHub Cofounder & CEO\nLikes tater tots and beer."
dob = 1979-05-27T07:32:00Z

src/data.yaml

1
2
3
4
5
6
7
8
title: YAML Example
owner:
name: Tom Preston-Werner
organization: GitHub
bio: |-
GitHub Cofounder & CEO
Likes tater tots and beer.
dob: 1979-05-27T07:32:00.000Z

src/data.json5

1
2
3
4
5
6
7
8
9
10
11
{
// comment
title: 'JSON5 Example',
owner: {
name: 'Tom Preston-Werner',
organization: 'GitHub',
bio: 'GitHub Cofounder & CEO\n\
Likes tater tots and beer.',
dob: '1979-05-27T07:32:00.000Z',
},
}

首先安装对应的packages

1
npm install toml yamljs json5 --save-dev

配置webpack.config.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const path = require('path');
const toml = require('toml');
const yaml = require('yamljs');
const json5 = require('json5');

module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: 'asset/resource',
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/i,
type: 'asset/resource',
},
{
test: /\.(csv|tsv)$/i,
use: ['csv-loader'],
},
{
test: /\.xml$/i,
use: ['xml-loader'],
},
{
test: /\.toml$/i,
type: 'json',
parser: {
parse: toml.parse,
},
},
{
test: /\.yaml$/i,
type: 'json',
parser: {
parse: yaml.parse,
},
},
{
test: /\.json5$/i,
type: 'json',
parser: {
parse: json5.parse,
},
},
],
},
};

然后在src/index.js中使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import _ from 'lodash';
import './style.css';
import Icon from './icon.png';
import Data from './data.xml';
import Notes from './data.csv';
import toml from './data.toml';
import yaml from './data.yaml';
import json from './data.json5';

console.log({ toml });

console.log({ yaml });

console.log({ json });

function component() {
const element = document.createElement('div');

// lodash 在当前 script 中使用 import 引入
element.innerHTML = _.join(['Hello', 'webpack'], '&#xe6eb; ');
element.classList.add('hello');

// 将图像添加到我们已经存在的 div 中。
const myIcon = new Image();
myIcon.src = Icon;

element.appendChild(myIcon);

console.log({ Data });
console.log({ Notes });

return element;
}

document.body.appendChild(component());

编译

1
npm run build

成功解析

image-20220821235633453

最后是全局资源相关的知识点,简单说就是你可以自定义组件,并将这些资源放到组件文件夹下一期复制过去

最后是回退处理,用于之后的学习

删除以下文件

1
2
3
4
5
6
7
8
9
|- data.csv
|- data.json5
|- data.toml
|- data.xml
|- data.yaml
|- icon.png
|- my-font.woff
|- my-font.woff2
|- style.css

webpack.config.js

1
2
3
4
5
6
7
8
9
const path = require('path');

module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
};

src/index.js

1
2
3
4
5
6
7
8
9
10
11
import _ from 'lodash';

function component() {
const element = document.createElement('div');

element.innerHTML = _.join(['Hello', 'webpack'], ' ');

return element;
}

document.body.appendChild(component());

移除依赖

1
npm uninstall css-loader csv-loader json5 style-loader toml xml-loader yamljs