📌  相关文章
📜  使用边界 axios 作为表单数据发送 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:10.688000             🧑  作者: Mango

代码示例1
const form = new FormData();
form.append("form-field1", value1);
form.append("form-field2", value2);

const res = await axios.post({'http://www.yourserver.com/upload',
    form,
    headers: {
        'Content-Type': `multipart/form-data; boundary=${form._boundary}`,
    },
});