Skip to main content

load document

Less than 1 minute

Internet resources


editor.loadUrl('/doc/999.html').then(()=>{
    editor.setBindObject('Linghu Chong', name)
})

text document


axios.get('/doc/999.html').then((result) => {
    editor.loadHtml(result.data)
})

Merge documents


axios.get('/doc/999.html').then((result) => {
    editor.appendHtml(result.data)
})