使用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>
用注释包裹起来,让htmlmin不处理这段xml
https://github.com/kangax/html-minifier
<!-- htmlmin:ignore -->
<component-recommend-list ebookId="{{id}}" userId="{{user.userID}}"></component-recommend-list>
<!-- htmlmin:ignore -->
佩服佩服,我们都不敢处理那几种后缀类型文件,生怕触发了某个微信的bug