can I save this document to some sort of JSON format to save in Mongodb?
Yes you can use getContents to get a Delta object which looks something like this:
{
startLength: 0,
endLength: 10,
ops: [
{ text: 'Hello' },
{ text: 'Quill', { bold: true } }
]
}
The reason it's not just a vanilla object is because we attached some useful functions to it but if you want to just store the data this should be what you're looking for.
Feel free to reopen if this isn't what you're looking for.
Most helpful comment
Yes you can use getContents to get a Delta object which looks something like this:
The reason it's not just a vanilla object is because we attached some useful functions to it but if you want to just store the data this should be what you're looking for.