자바 스크립트에서 파일 업로드 유효성 검사
이 문서에서는 서버에 업로드하기 전에 파일 형식(확장자) 및 파일 크기를 확인하는 방법을 보여줍니다. 이 데모는 자바스크립트를 사용한 클라이언트 측 유효성 검사에 대해 표시됩니다.
파일 형식(확장자) 유효성 검사
Javascript를 사용하면 허용된 파일 형식으로 파일 확장자를 추출하여 파일 형식을 쉽게 확인할 수 있습니다.
파일 형식 검증의 예
다음은 파일 형식 유효성 검사에 대한 샘플 예입니다. 이 예에서는 확장자가 .jpeg/.jpg/.png/.gif인 파일만 업로드합니다. 업로드 버튼 클릭 시 호출될 자바스크립트 함수 validateFileType()을 정의할 것입니다.
<!DOCTYPE html>
<html>
<head>
<title>
File type validation while uploading using JavaScript
</title>
<style>
body{
text-align:center;
}
</style>
</head>
<body>
<h1>File type validation while uploading using JavaScript</h1>
<p>Upload an image (.jpg,.jpeg,.png,.gif)</p>
<!-- input element to choose a file for uploading -->
<input type="file" id="file-upload" />
<br><br>
<!-- button element to validate file type on click event -->
<button onclick="validateFileType()">Upload</button>
<script>
/* javascript function to validate file type */
function validateFileType() {
var inputElement = document.getElementById('file-upload');
var files = inputElement.files;
if(files.length==0){
alert("Please choose a file first...");
return false;
}else{
var filename = files[0].name;
/* getting file extenstion eg- .jpg,.png, etc */
var extension = filename.substr(filename.lastIndexOf("."));
/* define allowed file types */
var allowedExtensionsRegx = /(\.jpg|\.jpeg|\.png|\.gif)$/i;
/* testing extension with regular expression */
var isAllowed = allowedExtensionsRegx.test(extension);
if(isAllowed){
alert("File type is valid for the upload");
/* file upload logic goes here... */
}else{
alert("Invalid File Type.");
return false;
}
}
}
</script>
</body>
</html>
샘플 포인트를 사용하여 위의 코드 구현을 이해합시다.
시사
자세히 알아보기: https://javacodepoint.com/file-upload-validations-in-javascript/
Reference
이 문제에 관하여(자바 스크립트에서 파일 업로드 유효성 검사), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/javacodepoint/file-upload-validations-in-javascript-3kea텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)