美文网首页
hilo游戏开发支持html文件

hilo游戏开发支持html文件

作者: 大胡子111 | 来源:发表于2018-11-27 23:38 被阅读15次

场景需求:
写游戏的时候,有个游戏列表弹层,里面的内容涉及内容较多,如果直接利用hilo的方式写会很累,且效率不高,怎么才能让hilo支持html文件呢 ?啦啦拉,一起来看啊~

html-loader作用 :

将HTML输出为字符串。当编译器要求时,HTML被最小化。

首先需要更新脚手架呀
npm  i  -D  html-loader

webpack配置更改

  module: {
    loaders: [
      {
        test: /\.html$/,
        loader: 'html-loader',
        query: {
          minimize: true,
        }
      }
    ]
  },
  htmlLoader:{       //解决img标签报错的问题
    attrs:[]
  },

index.js

import tpl from "./tpl.html"   //引入html模板
console.info(tpl)   //把模板打印出去

tpl.html

<div>
       <p style="font-size: 14px;">这里是模板内容,这里是模板内容</p>
 </div>

相关文章

网友评论

      本文标题:hilo游戏开发支持html文件

      本文链接:https://www.haomeiwen.com/subject/ovloqqtx.html