0%

ejs | webpack 公共页面

之前,使用 webpack 来打包项目,文件都是用 html 结尾,后来因为有公共组件,比如

  • header
  • footer

等,就把所有的 html 改成了 ejs

这个需要结合 html-webpack-plugin


参考资料



使用


安装

npm install ejs-loader

列一下我的目录。

  • project
    • src
      • pages
        • common
          • header.ejs
        • example
          • index.ejs

我的 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
const path = require('path');
const webpack = require('webpack');
...
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
resolve: {
alias: {
src: path.resolve(__dirname, 'src'),
'@pages': path.resolve(__dirname, 'src/pages')
}
},
entry: {
example: './src/pages/example/index.js',
...
},
...
module: {
rules: [
...
{
test: /\.ejs$/,
use: [
{
loader: 'ejs-loader',
options: {
esModule: false,
variable: 'data',
},
},
],
},
]
},
plugins: [
...
new HtmlWebpackPlugin(
{
template: './src/pages/example/index.ejs',
filename: "example.html",
chunks: ['example'],
}
),
]
}

其中

  • header.ejs 如下
1
都是 html 代码,没啥好写的
  • example.ejs 的代码如下
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ejs</title>
</head>
<body>
<%= require('@pages/common/public/header.ejs')() %>
...

</body>
</html>

ejs 有跟多好用的用法,比如传递参数,但是,目前我没用到,所以,暂时不写了。

请我喝杯咖啡吧~