微信小程序 => rich-text

2017-12-11  本文已影响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')
  }
})

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

上一篇下一篇

猜你喜欢

热点阅读