How to include html partials with webpack (version 2) with the html-loader?(如何在 html-loader 中包含带有 webpack(版本 2)的 html 部分?)
问题描述
我正在努力通过 html-loader 包含一个简单的 footer.html,作为 html 部分).我正在使用
webpack
版本 2.
I am working hard to include a simple footer.html, as an html partial) via html-loader
. I am using webpack
version 2.
我未能尝试使用 ${require('**./footer.html**')}
和 ${require('**../footer.html**')}
.
I failed trying to use ${require('**./footer.html**')}
and ${require('**../footer.html**')}
.
我没有使用 ejs 加载程序,也没有使用车把插件.
I am not using ejs loader and I do not use the handlebar plugin.
有人知道我该如何解决这个问题,以及是否可以使用 webpack
渲染部分内容.
Does somebody know how I can fix this problem and whether it possible to render partials with webpack
.
感谢您的建议!
推荐答案
这个特性叫做 插值.这里 { test:/.html$/, use: ['html-loader?interpolate'] },
是一个 webpack 配置 rule,它通过指定 <代码>插值标志.
The feature is called interpolation. Here { test: /.html$/, use: ['html-loader?interpolate'] },
is a webpack configuration rule that leverages it by specifying the interpolate
flag.
这篇关于如何在 html-loader 中包含带有 webpack(版本 2)的 html 部分?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 html-loader 中包含带有 webpack(版本 2)的 html 部分?
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01