diff --git a/src/pages/Editor.vue b/src/pages/Editor.vue index 589569a..d50a818 100644 --- a/src/pages/Editor.vue +++ b/src/pages/Editor.vue @@ -253,9 +253,9 @@ const submitBlog = async () => { console.log(Object.fromEntries(formData.entries())); // 3️⃣ 发送请求 - const testAxiosAPI = api; - testAxiosAPI.defaults.baseURL = submitURL; - testAxiosAPI.post('', formData).then(response => { + const tempURL = api.defaults.baseURL; + api.defaults.baseURL = submitURL; + api.post('', formData).then(response => { if (response.code === 0) { swal.window('success', '提交成功',`博客id: ${response.blogId || '未找到blogId字段'}`,'ok','好的'); return; @@ -264,6 +264,7 @@ const submitBlog = async () => { }).catch((e) => { swal.tip('error', `错误${e.message}`) }); + api.defaults.baseURL = tempURL; // api.post('/blogs', formData).then(response => { // if (response.status !== 200) {