-1
내 서버에 업로드하기 전에 Agile Uploader을 사용하여 이미지 크기를 조정하고 싶습니다.애자일 업 로더 (서버에 업로드하기 전에 이미지 크기 조정) - POST 데이터에 이미지가 전혀 없습니까?
하지만 서버에서 이미지를 업로드하려고 할 때 아무 것도하지 않습니다 ... POST 데이터에 이미지가 없음을 의미합니다. 나는 POST를 점검했고 아이템이 전혀 없다. 내가 도대체 뭘 잘못하고있는 겁니까? 자신의 demo에서 촬영
<html>
<head>
<script type="text/javascript" src="/static/js/jquery1.6.4.min.js"></script>
<script src="/static/js/jquery.flash.min.js" type="text/javascript"></script>
<link type="text/css" rel="stylesheet" href="/static/css/unrelated.css" />
<script src="/static/js/agile-uploader-3.0.js" type="text/javascript"></script>
<link type="text/css" rel="stylesheet" href="/static/css/agile-uploader.css" />
</head>
<body>
<form action="/test" method="post" id="singularDemo" enctype="multipart/form-data">
<div id="single"></div>
</form>
<a href="#" onClick="document.getElementById('agileUploaderSWF').submit();">Submit</a>
<script type="text/javascript">
$('#single').agileUploaderSingle({
formId:'singularDemo',
progressBarColor:'#3b5998',
flashVars:{
firebug:true,
form_action:'/test',
}
});
</script>
</body>
</html>
대부분의 코드 부분 :
여기 내 코드입니다.
미리 감사드립니다.