微信小程序解析html代码 (wxParse工具)

百度网盘:https://pan.baidu.com/s/1LYT7jDedUo428l3BidDQdQ
提取码: q3t3

使用步骤:

1.将下载下来的插件文件夹复制到我们的项目根目录下(其中emojis文件可根据自己所需决定要或者不要,其他的文件必须要)

微信小程序解析html代码 (wxParse工具)_第1张图片

2.在需要使用该插件的View(.js文件)中引入WxParse模块

	var WxParse = require('../../wxParse/wxParse.js');

微信小程序解析html代码 (wxParse工具)_第2张图片

3.在需要是用的wxss中引入WxParse.wxss,也可以在app.wxss中引入

@import "/wxParse/wxParse.wxss";

微信小程序解析html代码 (wxParse工具)_第3张图片

4.*.js中的用法

onLoad: function (options) {
    var that = this;
    var id = options.id;
    wx.request({
      url: 'http://xxx.com/xx/xx',
      header: {
        'content-type': 'application/x-www-form-urlencoded' // 默认值
      },
      method: "POST",
      data:{id:id},
      dataType: "json",
      success: function (res) {
       console.log(res)
        var article = res.data.data.content;
        
        WxParse.wxParse('article', 'html', article, that, 0);
      }
    })
  },

以下为官方文档介绍

  • WxParse.wxParse(bindName , type, data,target,imagePadding)
  • 1.bindName绑定的数据名(必填)
  • 2.type可以为html或者md(必填)
  • 3.data为传入的具体数据(必填)
  • 4.target为Page对象,一般为this(必填)
    ** 5.imagePadding为当图片自适应是左右的单一padding(默认为0,可选)
    */
    var that = this;
    WxParse.wxParse(‘article’, ‘html’, article,that, 5);

5.*.html页面调用