반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

이미지 업로드 jquery, axios 본문

JAVA/etc.

이미지 업로드 jquery, axios

닉의네임 2020. 11. 11. 19:03
반응형

스크립트로 이미지 업로드 

[환경]

jquery, axios 

 

html

<form enctype="multipart/form-data" method="post" id="file-form">
	<input type="file" name="file" class="form-control form-control-user" id="file" placeholder="file">
</form>

jquery

            var form = $('#file-form')[0];
            var formData = new FormData(form);
            formData.append("file", $("#file")[0].files[0]);
            
            $.ajax({
                url: 'http://localhost:8081/indexer/images',
                processData: false,
                contentType: false,
                data: formData,
                type: 'POST',
                success: function(result){
                    alert("업로드 성공!!");
                }
            });

axios

var form = $('#file-form')[0];
var formData = new FormData(form);
formData.append("file", $("#file")[0].files[0]);

formData.append("imageId", 2);
const config = {
       headers: {'content-type': 'multipart/form-data'}
   }
   return axios.post('http://localhost:8081/indexer/images', formData, config);

[확인]

 

 

 

 

 

반응형

'JAVA > etc.' 카테고리의 다른 글

Maven 설치 - Mac OS (old version)  (0) 2022.02.28
Nexus  (0) 2022.02.10
[Pentaho] Transformation 1  (0) 2021.12.02
Elasticsearch health check failed  (0) 2020.03.05
JMH  (0) 2020.03.04
Comments