Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/04/2013, 20:00
nestor_rupay
 
Fecha de Ingreso: abril-2013
Mensajes: 9
Antigüedad: 11 años, 7 meses
Puntos: 0
Respuesta: Problema al Subir archivo por $.ajax()

Por fin, di con la solucion.
Para todos los amigos que necesitan un fomulario que permita subir archivos con jquery l la función $.ajax(). aqui la solucion.


index.html
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Documento sin título</title>
  5. <script type="text/javascript" src="js/jquery-1.7.2.min.js" ></script>
  6. <script type="text/javascript">
  7. function uploadAjax(){
  8. var data = new FormData($('#form1')[0]);
  9. var url = "upload.php";
  10.     $.ajax({
  11.         url:url,
  12.         type:"POST",
  13.         dataType: 'json',
  14.         contentType:false,
  15.         data:data,
  16.         processData:false,
  17.         cache:false
  18.     }).done(function(respuesta){
  19.                     alert(respuesta.mensaje);
  20.                     });
  21.  
  22. }
  23. </head>
  24. <!--<input type="file" name="archivoImage" id="archivoImage" />-->
  25. <form name="form1" method="post" action="" id="form1">
  26. <input type="file" name="archivoImage" id="archivoImage" /><br />
  27. <label>NOMBRE:</label><input type="text" name="nombre" id="nom"/><br />
  28. <label>APELLIDOS</label><input type="text" name="apellidos" id="ape"/><br />
  29.  
  30. <input type="button" id="botonSubidor" onclick="uploadAjax();"/>
  31. </form>
  32.  
  33. </body>
  34. </html>

upload.php
Código PHP:
Ver original
  1. <?php
  2. $upload_folder ="imagenes";
  3.  
  4. $nombre_archivoImage = $_FILES["archivoImage"]["name"];
  5.  
  6.  
  7. $tipo_archivoImage = $_FILES["archivoImage"]["type"];
  8.  
  9. $tamano_archivoImage = $_FILES["archivoImage"]["size"];
  10.  
  11. $tmp_archivoImage = $_FILES["archivoImage"]["tmp_name"];
  12.  
  13. $nom=$_POST['nombre'];
  14. $ape=$_POST['apellidos'];
  15.  
  16. $archivador = $upload_folder . "/" . $nombre_archivoImage;
  17.  
  18. move_uploaded_file($tmp_archivoImage, $archivador);
  19. $respuesta = new stdClass();
  20. $respuesta->mensaje=$nom.' '.$ape.' '.$nombre_archivoImage;
  21. echo json_encode($respuesta);
  22. ?>