美文网首页
微信小程序富文本正则所有

微信小程序富文本正则所有

作者: 吕保鑫 | 来源:发表于2020-04-14 16:12 被阅读0次
<rich-text nodes='{{text}}'></rich-text>
// pages/my_chat/component/message/client/clienttext/clienttext.js
Component({
  properties: {
    contai: {
      type:String
    }
  },

  data: {
    text: ""
  },
  ready: function () {
    this.setData({
      text: this.properties.contai.replace(/(<img[\s\S]+?)/ig, '<img style="width:23px;margin:0 auto;"'),
    })
  },
  methods: { 
  }
})

相关文章

网友评论

      本文标题:微信小程序富文本正则所有

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