icindy / wxParse

wxParse-微信小程序富文本解析自定义组件,支持HTML及markdown解析
http://weappdev.com/
MIT License
7.75k stars 1.82k forks source link

图片点击事件wxParseImgTap的bug(Cannot read property 'imageUrls' of undefined)修复 #129

Open zhuming3834 opened 7 years ago

zhuming3834 commented 7 years ago

@icindy wxParse.js文件中的图片点击事件wxParseImgTap,图片点击后报错: WAService.js:3 thirdScriptError Cannot read property 'imageUrls' of undefined;at "pages/page/index" page wxParseImgTap function TypeError: Cannot read property 'imageUrls' of undefined 修复: ` /**

zhuming3834 commented 7 years ago

@icindy
在wxParse.js 的第50行后面增加:that.bindData = bindData; // 增加这一行代码 在wxParse.js 的wxParseImgTap方法中将urls换成:urls: that.bindData[tagFrom].imageUrls // 注释掉上面的 换着一行

icindy commented 7 years ago

谢谢反馈 稍候我会合并到代码里面