js/upload.js
페이지 정보
본문
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
}
- 이전글● 게시물과 첨부파일 등록 처리 24.07.03
- 다음글board/register.html 24.07.03
댓글목록
등록된 댓글이 없습니다.