Hufe921 / canvas-editor

rich text editor by canvas/svg
https://hufe.club/canvas-editor-docs
MIT License
3.7k stars 553 forks source link

关于多个html转换的问题 #819

Closed Arc-zlz closed 2 months ago

Arc-zlz commented 2 months ago

What problem does this feature solve?

比如后端数据有存了多条 instance.command.getValue() 获取的json数据 后端返回前端多条数据时 有方法能转换成html/text的格式吗?不用实例化 new Editor() 用getHtml() 转化 我看了源码 image 这个方法是实现的 就是没导出来 复制代码的话 引用的变量太多 有点麻烦

What does the proposed API look like?

import { jsonToHtml, jsonToText} from "@hufe921/canvas-editor"; const data = instance.command.getValue() const htmlStr= jsonToHtml(data ) const textStr= jsonToText(data )