Skip to main content

Save Document

Less than 1 minute

HTML only


let data = {'doc': editor.getHtml()}
axios.post(serverUrl, data).then(res=>{
    console.log('res=>',res)
})

HTML & data


let data = {
    'doc': editor.getHtml(),
    'data': editor.getBindObject()
}
axios.post(this.serverUrl, data).then(res=>{
    console.log('res=>',res)
})