收藏
回答

gulp-htmlmin 压缩wxml的问题


使用gulp-htmlmin压缩wxml后,会把其中引用的自定义组件的自定义属性改成全小写,导致组件无法获取父页面传递的参数。有什么办法可以不让其修改标签的属性大小写


正确的代码

<component-recommend-list ebookId="{{id}}" userId="{{user.userID}}"></component-recommend-list>


压缩后

<component-recommend-list ebookid="{{id}}" userid="{{user.userID}}"></component-recommend-list>


回答关注问题邀请回答
收藏

2 个回答

  • fatcat肥猫
    fatcat肥猫
    2020-05-07

    用注释包裹起来,让htmlmin不处理这段xml

    https://github.com/kangax/html-minifier

    <!-- htmlmin:ignore -->

    <component-recommend-list ebookId="{{id}}" userId="{{user.userID}}"></component-recommend-list>

    <!-- htmlmin:ignore -->

    2020-05-07
    有用
    回复
  • 张博 Bill
    张博 Bill
    2018-06-27

    佩服佩服,我们都不敢处理那几种后缀类型文件,生怕触发了某个微信的bug

    2018-06-27
    有用
    回复
登录 后发表内容