📝Docs: 完成 T03/集成 Axios 实现 AJAX 提交邮件数据

This commit is contained in:
2025-10-07 22:16:44 +08:00
parent 30ac68ad5c
commit 84ba8ceb06
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -168,7 +168,7 @@ const submitForm = async () => {
message.value = ''
// 发送请求
const response = await axios.post('/api/email/send', formData, {
const response = await axios.post('http:localhost:8080/api/email/send', formData, {
headers: {
'Content-Type': 'multipart/form-data'
}