js/upload.js
페이지 정보
작성자 관리자 작성일 24-07-03 10:28 조회 33 댓글 0본문
async function uploadToServer(formObj){ //파일 첨부
console.log("upload to server .....");
console.log(formObj);
const response = await axios({
method : 'post',
url : '/upload',
data : formObj,
header : {
'Content-Type' : 'multipart/form-data'
},
});
return response.data;
}
async function removeFileToServer(uuid, fileName){ //파일 삭제
const response = await axios.delete(`/remove/${uuid}_${fileName}`)
return response.data
}
댓글목록 0
등록된 댓글이 없습니다.