小程序
小游戏
企业微信
微信支付
扫描小程序码分享
使用了自带的editor组件,看到文档上写
于是就存储了delta格式的文本。但是复显的时候发现rich-text好像不支持,数据格式是这样的
有谁知道吗?还是我漏看了文档?还是存的时候还是需要html字符串?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
只支持 html的字符串 或节点列表
html字符串就不用多说了
节点列表的格式如下
[{ name: 'div', attrs: { class: 'div_class', style: 'line-height: 60px; color: red;' }, children: [{ type: 'text', text: 'You never know what you're gonna get.' }] }]
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你回显的时候就直接用editor组件呗,把read-only 设置为 true 就好了, 就是步骤要比 text-rich 繁琐一些
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
只支持 html的字符串 或节点列表
html字符串就不用多说了
节点列表的格式如下
[{ name: 'div', attrs: { class: 'div_class', style: 'line-height: 60px; color: red;' }, children: [{ type: 'text', text: 'You never know what you're gonna get.' }] }]
你回显的时候就直接用editor组件呗,把read-only 设置为 true 就好了, 就是步骤要比 text-rich 繁琐一些