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 包含部分内容?
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06