美文网首页
微信小程序 => rich-text

微信小程序 => rich-text

作者: 想做一个画家 | 来源:发表于2017-12-11 22:31 被阅读160次
    <!-- rich-text.wxml -->
    <rich-text nodes="{{nodes}}" bindtap="tap"></rich-text>
    

    把后台请求回来的富文本数据直接赋值给nodes就好了 例如 nodes:res.data.cmsContent

    // rich-text.js
    Page({
      data: {
        nodes: [{
          name: 'div',
          attrs: {
            class: 'div_class',
            style: 'line-height: 60px; color: red;'
          },
          children: [{
            type: 'text',
            text: 'Hello&nbsp;World!'
          }]
        }]
      },
      tap() {
        console.log('tap')
      }
    })
    

    当一个问题变的很难的时候,很有可能是你的思维受限的, 好的解题思路总是,简洁优美的

    相关文章

      网友评论

          本文标题:微信小程序 => rich-text

          本文链接:https://www.haomeiwen.com/subject/bxgwixtx.html