Is there a way to include partial using html-webpack-plugin?(有没有办法使用 html-webpack-plugin 包含部分内容?)
问题描述
我正在使用 Webpack 来编译我的脚本和 HTML(使用 html-webpack-plugin
).问题是,我有 5 个包含相同部分的 HTML 文件,我想将这些部分移动到单独的 .html
文件中,然后在每个 HTML 文件中 include
这些部分.这样,如果我要更改这些较小的 HTML 文件,它将重新编译每个 HTML 文件以表示这些更改.
I am using Webpack to compile my scripts and HTML (using html-webpack-plugin
). The thing is, I have 5 HTML files that contains the same parts and I want to move these parts to separate .html
files and then include
these parts in every HTML file. This way, if I will change these smaller HTML files, it will recompile every HTML file to represent these changes.
Webpack 默认对 .js 文件执行此操作,但我可以对 HTML 文件使用类似的内容吗?
Webpack does this for .js files by default, but can I use something like that for HTML files?
推荐答案
您可以在模板中使用 <%= require('html!./partial.html') %>
.此处示例:https://github.com/jantimon/html-webpack-plugin/blob/master/examples/custom-template/template.html
You can use <%= require('html!./partial.html') %>
in your template. Example here: https://github.com/jantimon/html-webpack-plugin/blob/master/examples/custom-template/template.html
这篇关于有没有办法使用 html-webpack-plugin 包含部分内容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有办法使用 html-webpack-plugin 包含部分内容?
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01