在 10- webpack 自动生成 index.html 之后,index.html 的自动生成任务 由 html-webpack-plugin
接管。
有时候会面临需要将一段 html标签内容、初始化页面的JavaScript、初始化样式CSS 需要内联的需要,可以直接写到 index.html 中去,但是为了方便维护最好还是把文件独立出来,然后由 webpack 自动完成内联任务。
webpack 完成内联任务,需要借助 raw-laoder
完成。
一、使用模板文件
修改 webpack.config.js 中的 html-webpack-plugin
的配置项,指定模板文件。
const path = require('path');
const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
entry: './src/index.js',
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
},
plugins:[
new HtmlWebpackPlugin({
title: "18-webpack 实现 Html、JavaScript、CSS 内联",
template:"./src/index.html",//指定首页模板
}),
]
};
二、新建内联文件
index.js
function component() {
let element = document.createElement('div');
element.innerHTML = "Hello webpack !";
element.classList.add("hello");
return element;
}
document.body.appendChild(component());
demo.inline.html
demo.inline.js
console.log("内联JavaScript");
demo.inline.css
.hello{
color: red;
}
三、安装 raw-loader
安装
npm install raw-loader --save-dev
//
yarn add raw-loader --dev
安装成功
yarn add v1.16.0
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Saved lockfile.
success Saved 1 new dependency.
info Direct dependencies
└─ [email protected]
info All dependencies
└─ [email protected]
✨ Done in 4.36s.
四、编辑 src/index.html 模板文件
${require("raw-loader!./demo.inline.html").default}
18-webpack 实现 Html、JavaScript、CSS 内联
五、查看 dist/index.html
然后查看 dist 目录下自动生成的文件
18-webpack 实现 Html、JavaScript、CSS 内联
在 Chrome 中打开 index.html,可以看到 、字体样式、console输出。
六、语法说明
6.1 指定 template
html-webpack-plugin 的 template
指定 index.html 文件相对于 webpack.config.js 的相对路径或者绝对路径。
6.2 template 说明
{
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.html'
})
]
}
不指定解析 loader 的情况下使用 lodash loader
6.3 lodash loader
部分代码
// The following part renders the template with lodash as a minimalistic loader
//
const template = _.template(source, _.defaults(options, { interpolate: /<%=([\s\S]+?)%>/g, variable: 'data' }));
// Use __non_webpack_require__ to enforce using the native nodejs require
// during template execution
return 'var _ = __non_webpack_require__(' + JSON.stringify(require.resolve('lodash')) + ');' +
'module.exports = function (templateParams) { with(templateParams) {' +
// Execute the lodash template
'return (' + template.source + ')();' +
'}}';
6.4 lodash 的 _.template
_.template([string=''], [options={}])
使用 模板字符串 和 选项对象 返回编译模板函数。
6.4 raw-loader
核心代码
import { getOptions } from 'loader-utils';
import validateOptions from 'schema-utils';
import schema from './options.json';
export default function rawLoader(source) {
const options = getOptions(this) || {};
validateOptions(schema, options, {
name: 'Raw Loader',
baseDataPath: 'options',
});
const json = JSON.stringify(source)
.replace(/\u2028/g, '\\u2028')
.replace(/\u2029/g, '\\u2029');
return `export default ${json}`;
}
使用 require 加载 export default 需要重 .default 属性中获取内容
const something = require("something");
console.log(something.default);
参考链接
- 设置 HtmlWebpackPlugin
- html-webpack-plugin
- raw-loader
- html-webpack-plugin/docs/template-option.md
- html-webpack-plugin/lib/loader.js
- _.template
- 玩转 webpack 第三章
- 示例代码