测试博客提交修正

This commit is contained in:
Guarp 2025-03-08 15:59:22 +08:00
parent 85ae79b195
commit 7fa16c034c

View File

@ -255,7 +255,11 @@ const submitBlog = async () => {
const tempURL = api.defaults.baseURL;
api.defaults.baseURL = submitURL;
api.post('', formData).then(response => {
api.post('', formData, {
headers: {
"Content-Type": "multipart/form-data",
},
}).then(response => {
if (response.code === 0) {
swal.window('success', '提交成功',`博客id: ${response.blogId || '未找到blogId字段'}`,'ok','好的');
return;