Jump to content
  • 0

загрузка файла при помощи ajax


htmligor
 Share

Question

Всем привет, помогите разобраться как загружать файлы на сервер при помощи ajax через input tupe="file", есть такой код: который формирует заголовки для отправки полей формы, вот только файл загружается на сервер пустой.

$(document).ready(function(){	$("form[name='SIMPLE_FORM_1']").live("submit",function(){				var form_link = $(this);			var xmlhttp = getXmlHttp();		var boundary = String(Math.random()).slice(2);				var boundaryMiddle = '--' + boundary + '\r\n';		var boundaryLast = '--' + boundary + '--\r\n'		var body = ['\r\n'];						form_link.children("input").each(function(n,element){		  		  if ($(element).attr("name")  == "form_file_5"){				body.push('Content-Disposition: form-data; name="'+$(element).attr("name")+'"; filename="'+$(element).val()+'\r\nContent-Type: image/png\r\n\r\n\r\n');		  }else{				body.push('Content-Disposition: form-data; name="'+$(element).attr("name")+'"\r\n\r\n'+$(element).val()+'\r\n');		  }		});			body = body.join(boundaryMiddle) + boundaryLast;		xmlhttp.open('POST', '/bitrix/page_includes/form.php', true);		xmlhttp.setRequestHeader('Content-Type','multipart/form-data; boundary=' + boundary); 		xmlhttp.onreadystatechange = function() {		  if (xmlhttp.readyState == 4) {			 if(xmlhttp.status == 200) {				form_link.parent("#container").html(xmlhttp.responseText);			}		  }		};		xmlhttp.send(body);		return false;	});})*
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

При загрузке файла на сервер он попадает  в папку с файлом где лежит файл к которому мы делаем запрос т.е.  xmlhttp.open('POST', '/bitrix/page_includes/form.php', true);  . Можно ли указать загружаемому файлу где ему сохраняться ?

Link to comment
Share on other sites

  • 0

ну как бы да , но этот файл загружается в папку где лежит файл /form.php и получается файл сохраняется в двух местах , где его обработчик сохраняет который прописан в файле form.php и рядом с файлом в одной директории - это плохо.

Edited by htmligor
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy