获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
用注释包裹起来,让htmlmin不处理这段xml https://github.com/kangax/html-minifier <!-- htmlmin:ignore --> <component-recommend-list ebookId="{{id}}" userId="{{user.userID}}"></component-recommend-list> <!-- htmlmin:ignore -->
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>
2020-05-07