我打算使用ReactJs,React-Quill,Node和Mongodb制作discussion forum application
。
很明显,该帖子包含代码段和图片
所以我不知道如何保存帖子。 它保存在特定文件格式或数据库上。
因此可以在original format.
答案 0 :(得分:0)
您可以使用getContents
来获取JSON中的Delta对象。
看起来像这样:
{
startLength: 0,
endLength: 10,
ops: [
{ text: 'Hello' },
{ text: 'Quill', { bold: true } }
]
}
参考:https://github.com/quilljs/quill/issues/83
有关羽毛笔三角洲的更多信息:https://quilljs.com/docs/delta/