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 部分?
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 动态更新多个选择框 2022-01-01