NSkrypnikОбычная загрузка, через скрытый фрейм. Примеров море, есть даже готовые плагины для jQuery(если конечно ты им пользуешься).
Хочу сделать загрузку картинок через ajax, на стороне сервера - мое CGI приложение на python. Собственно говоря вопрос - как =)? Нашел только пару невнятных примеров в сети, может здесь кто-то посоветует, в какую сторону двигаться?
<form id="file_upload_form" method="post" enctype="multipart/form-data" action="upload.php">
<input name="file" id="file" size="27" type="file" /><br />
<input type="submit" name="action" value="Upload" /><br />
<iframe id="upload_target" name="upload_target" src="" style="width:0;height:0;border:0px solid #fff;"></iframe>
</form>
function init() {
document.getElementById('file_upload_form').onsubmit=function() {
document.getElementById('file_upload_form').target = 'upload_target'; //'upload_target' is the name of the iframe
}
}
window.onload=init;
<form action="${SITE_URI}/uploader.py"
enctype="multipart/form-data"
method="POST"
id="uploadImgForm"
onsubmit="uploadImg(this, 'upload_thumb')">
<div style="margin: 10px;"><input type="submit" value="Загрузить изображение" /></div>
<input type="hidden" name="upThumbImg" value="1" />
<input type="file" name="datafile" size="40" />
</form>
if form.has_key('upThumbImg'):
item = form['datafile']
if item.file:
content = item.file.read()
outf = open(OS_DIR_SITE_PATH + "images/" + item.filename, 'wb')
outf.write(content)
outf.close