<a href="http://www.php.cn/wiki/125.html" target="_blank">For</a>mData
객체는 일련의 키-값 쌍을 사용하여 시뮬레이션할 수 있습니다. 양식을 작성한 다음 <a href="http://www.php.cn/wiki/1527.html" target="_blank">XML<code><a href="http://www.php.cn/wiki/1527.html" target="_blank">XML</a>HttpRequest
HttpRequest를 사용하여 이" 양식을 보내세요. ".
Mozilla 개발자 웹사이트에 FormData 객체 사용에 대한 자세한 지침이 있습니다. FormData
업로드 파일 부분은 맨 아래 부분만 있습니다. 레이어 객체가 업로드 요청을 보내므로 <a href="http://www.php.cn/wiki/1495.html" target="_blank">jQuery<code>XMLHttpRequest
를 전달하는 방법 code> <a href="http://www.php.cn/wiki/1495.html" target="_blank">jQuery</a>
업로드는 어떻게 되나요? Ajax
jQuery
객체 FormData
<form>
객체 메서드를 사용하여 파일을 업로드하는 방법을 소개합니다. 🎜>FormData
HTML.코드<form id="uploadForm" enctype="multipart/form-data"> <input id="file" type="file" name="file"/> <button id="upload" type="button">upload</button> </form>javascript
으로 설정됩니다. processData
값은 false
객체이므로 data
FormData
cache
false
가 로 설정되었습니다. 객체는
contentType
false
이 업로드된 후에는 false로 설정됩니다. 🎜> 매개변수 이름은 파일 입력 스트림 객체를 얻기 위한 <form>
입니다. FormData
객체가 enctype="multipart/form-data"
형식을 사용하여 구성되지 않은 경우
필드를 추가하려면 개체를 사용하세요. file
<input>
HTML 코드 name="file"
<p id="uploadForm"> <input id="file" type="file"/> <button id="upload" type="button">upload</button> </p>
태그도 없고 <form>
FormData
javascript도 없습니다. code
var formData = new FormData(); formData.append('file', $('#file')[0].files[0]); $.ajax({ url: '/upload', type: 'POST', cache: false, data: formData, processData: false, contentType: false }).done(function(res) { }).fail(function(res) {});
FormData
의 두 번째 매개변수는 파일 객체, 즉 <form>
enctype="multipart/form-data"
도 'false'로 설정해야 합니다.
append()
에 $('#file')[0].files[0]
또는
contentType
<a href="http://www.php.cn/wiki/1516.html" target="_blank">서블릿에서 </a>
또는 $('#file')[0].files[0]
를 통해 얻을 수 있습니다. <input type="file">
자세한 내용은 공식 웹사이트 튜토리얼인 Java 서블릿 기술을 사용하여 파일 업로드 예제와 파일 업로드 예제 애플리케이션을 참조하세요.
위 내용은 FormData 개체가 파일을 업로드합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!