html에서는 form안에 form을 넣을 수 없다.
(정확히 말하면 chrom 기준)
html 코드에 div를 사용하는 것이 좋다.
<div class="form-group">
<label for="objectUrl" class="col-xs-2 control-label"><span class="fa fa-fw fa-bars"></span>이미지/동영상 업로드</label>
<div class="col-xs-10">
<input type="text" class="form-control" id="objectUrl" name="objectUrl" value="${actionTagGuide.objectUrl!}" ><br/>
<label><input type="file" name="file" id="file" accept="image/*,video/*"/></label>
<button type="button" class="btn btn-danger btn-upload">file upload</button>
</div>
</div>
스크립트 코드는 다음과 같다.
<script>
$(document).ready(function() {
$('.btn-upload').on('click', function (){
if (confirm('Want to upload a image or a video file?')) {
var data = new FormData();
data.append("file", $('#file').prop('files')[0]);
console.log(data);
$.ajax({
type: "POST",
enctype: 'multipart/form-data',
url: "/actiontag_guide/upload/",
data: data,
processData: false,
contentType: false,
cache: false,
timeout: 600000,
success: function (result) {
console.log("SUCCESS : ", result.data.url);
$('#objectUrl').attr("disabled", true)
$('#objectUrl').val(result.data.url)
},
error: function (e) {
console.log("ERROR : ", e);
}
});
}
});
'Web service' 카테고리의 다른 글
firefox 쿠키 파싱하기 - lz4json (0) | 2018.10.23 |
---|---|
크롬 브라우저의 쿠기 확인하기 - sqlite (0) | 2018.10.20 |
구글 place api : request_denied (0) | 2016.06.28 |
HTTPS 페이지에서 HTTP 페이지로 링크로 넘어갈 때, 브라우져에서 Referer 안 남기는 이유 (0) | 2016.03.24 |
google place의 map api 사용시 유의할 점 (위/경도) (0) | 2015.10.05 |