在使用wxParse解析微信模板时如果h5数据是文字内容不会存在任何问题,但是如果是图片和文字或仅图片的情况下,ios上 内容超出view后只要滑动遇到图片就会卡住,划不动
解决办法:
找到wxParse.wxml文件:
<image class="{{item.classStr}} wxParse-{{item.tag}}" data-from="{{item.from}}" data-src="{{item.attr.src}}" data-idx="{{item.imgIndex}}" src="{{item.attr.src}}" mode="aspectFit" bindload="wxParseImgLoad" bindtap="wxParseImgTap" mode="widthFix" style="width:{{item.width}}px;" />
//将style =“width:{{item.width}} px;” style= “width:100%;”
网友评论