跳至主要內容

保存文档

小于 1 分钟

仅HTML

//验证必须输入项
if(editor.validate()){
    //获取HTML文档
    let data = {'doc': editor.getHtml()}
    //保存HTML文档到后端服务
    axios.post(serverUrl, data).then(res=>{
        console.log('res=>',res)
    })
}

HTML&数据

//验证必须输入项
if(editor.validate()){
    //获取HTML文档和结构化数据(JSON)
    let data = {
        'doc': editor.getHtml(),
        'data': editor.getBindObject()
    }
    //保存HTML文档和结构化数据到后端服务
    axios.post(this.serverUrl, data).then(res=>{
        console.log('res=>',res)
    })

}