测试博客提交修正
This commit is contained in:
parent
3d7553ca61
commit
85ae79b195
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user