小程序中将html转换展示出来 插件

有些路很远,走下去会很累。可是,不走,会后悔。

wxParse是一个微信小程序富文本解析组件。现在小程序里面自带了一个组件也能解析富文本,但是表现不尽人意

wxParse git地址: https://github.com/lidaxuan/wxParse-master。可以先稍作了解。下面具体讲一下我实现的步骤:

1.下载 wxParse,解压,将 wxParse 放入小程序中。
如下图:
在这里插入图片描述

第二步:

<!-- {{courseRuleInfo}} -->
<import src="../../../wxParse/wxParse.wxml" />

<view style="padding-top: {{paddingTop}}px;" class="wxParse">
    <template is="wxParse" data="{{wxParseData:article.nodes}}" />
</view>

在这里插入图片描述

第三步: 前后文对照的写

// pages/fullScreenVideo/fullScreenVideo.js
const app = getApp();
var WxParse = require('../../../wxParse/wxParse.js');
Page({

    /**
     * 页面的初始数据
     */
    data: {
        courseId: '',
        courseRuleInfo: '',
      
    },

    onLoad: function (opt) {
        this.setData({
            courseId: opt.courseId
        })
        this.getData(opt.courseId);
    },

    getData(courseId) {
        let that = this;
        app.apiRequest('接口', { }, 'get').then(res => {
            if (res.data.code == 0) {
                this.setData({
                    courseRuleInfo: res.data.data
                })
                WxParse.wxParse('article', 'html', that.data.courseRuleInfo, that);
            }
        })
    },
   
})

在这里插入图片描述

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值