第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

html-webpack-plugin, 嵌套引入 html, 無法解析

html-webpack-plugin, 嵌套引入 html, 無法解析

鴻蒙傳說 2018-07-23 20:01:48
index.html<div class="center-table-wrapper">     <%= require('html-loader!../components/systemMainTab/index.html') %></div>systemMainTab/index.html<div class="containerDY">     <div class="container-list">         <div class="container-table">             <table id="showTable" style="width:100%"></table>         </div>         <div class="container-pagination">             <!-- 無法引入html 內(nèi)容 -->             <%= require('html-loader!../systemPagination/index.html') %>          </div>     </div>     <!-- <div class="container-dy">     </div> --></div>systemPagination/index.html<div class="system-pagination"></div>第一層 <%= require('html-loader!../components/systemMainTab/index.html') %> 能正常引入, 而systemMainTab/index.html 的 <%= require('html-loader!../systemPagination/index.html') %> 未能解析, 有什么方法能嵌套解析否?一種方式是通過 js 來引入模塊在組裝, 不過這種方式實(shí)現(xiàn)不佳
查看完整描述

1 回答

?
慕標(biāo)5832272

TA貢獻(xiàn)1966條經(jīng)驗(yàn) 獲得超4個贊

你既然已經(jīng)用了 html-loader 了,實(shí)際上就不需要通過 html-webpack-plugin 的模板來渲染 html 了。在 webpack 里配置 html-loader 開啟 interpolate 后,通過 ES6 字符串模板進(jìn)行引用。

webpack:

{    test: /\.html$/,    use: [{        loader: "html-loader",        options: {            interpolate: true
        }
    }]}

html:

<!DOCTYPE html><html lang="en"><head>
    ${require("./common.html")}</head>

然后在 common.html 中,可以繼續(xù)使用 ${require("xxx.html")} 進(jìn)行引用。這個寫起來應(yīng)該比你用 <%= ... %> 更簡潔一些。


查看完整回答
反對 回復(fù) 2018-07-29
  • 1 回答
  • 0 關(guān)注
  • 1705 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號