From 9cea0c0461d4cc8025711645d1c82efdba388714 Mon Sep 17 00:00:00 2001 From: Guarp Date: Sat, 8 Mar 2025 16:55:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=8D=9A=E5=AE=A2=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Editor.vue | 57 +++++++------------------------------------- 1 file changed, 9 insertions(+), 48 deletions(-) diff --git a/src/pages/Editor.vue b/src/pages/Editor.vue index 3302bb5..4b1ee46 100644 --- a/src/pages/Editor.vue +++ b/src/pages/Editor.vue @@ -141,26 +141,6 @@ async function titleInputWindow() { console.error('输入弹窗出错:', error) } } -async function inputDirectSubmitURL() { - const result = await Swal.fire({ - title: '测试: 上传接口', - input: 'text', - inputLabel: '输入上传博客调用的POST接口url', - inputPlaceholder: '如"http://localhost:1234/blogs"', - showCancelButton: true, - cancelButtonText: '使用cyberURL', - confirmButtonText: '确定', - inputValidator: (value) => { - if (!value) { - return '输一下' - } - } - }) - if (!result.isConfirmed) { - return 'https://mva-cyber.club:5001/blogs'; - } - return result.value; -} // 🚀 提交博客 const submitBlog = async () => { @@ -173,7 +153,6 @@ const submitBlog = async () => { const response = await swal.window('info', '允许评论吗?', '其他用户可以在你的博客下留言', '允许', '不允许'); let allowComments = response.isConfirmed; - const submitURL = await inputDirectSubmitURL(); let content = editorRef.value.getHtml(); // 获取 HTML 内容 const images = [...imagesCache.value]; // 复制图片数组 @@ -253,37 +232,19 @@ const submitBlog = async () => { console.log(Object.fromEntries(formData.entries())); // 3️⃣ 发送请求 - const tempURL = api.defaults.baseURL; - api.defaults.baseURL = submitURL; - api.post('', formData, { + api.post('/blogs', formData, { headers: { "Content-Type": "multipart/form-data", }, }).then(response => { - if (response.code === 0) { - swal.window('success', '提交成功',`博客id: ${response.blogId || '未找到blogId字段'}`,'ok','好的'); - return; - } - swal.window('error', '错误', `code${ ('为' + response.code) || '未返回'}\n返回信息: ${response.message}`, 'ok','好的'); - }).catch((e) => { - - swal.tip('error', `${e.message}\n${e.code}`); - }); - api.defaults.baseURL = tempURL; - - // api.post('/blogs', formData).then(response => { - // if (response.status !== 200) { - // swal.tip('error', `404'}`); - // return; - // } - // if (response.code === 0) { - // swal.window('success', `提交成功, 博客id${response.blogId || '未找到blogId字段'}`); - // return; - // } - // swal.tip('error', '提交失败, code字段不为0') - // }).catch((e) => { - // swal.tip('error', `错误${e.message}`) - // }); + if (response.code === 0) { + swal.window('success', `提交成功, 博客id${response.blogId || '未找到blogId字段'}`); + return; + } + swal.tip('error', '提交失败, code字段不为0') + }).catch((e) => { + swal.tip('error', `错误${e.message}`) + }); };