hola a todos, desde ya muchas gracias por cualquier ayuda, tengo el siguiente codigo:
function uploadAjax() {
var inputFileImage = document.getElementById("archivo");
var file = inputFileImage.files[0];
var data = new FormData();
data.append('archivo', file);
var url = "subir_archivo.php";
var campo1 = document.getElementById("folio_formato").value;
//alert(campo1);
var params ={
"CAMPO1": campo1 //type of process which will be used in the ajax call
};
$.ajax({
url: url,
type: 'POST',
contentType: false,
data: data,params,
processData: false,
cache: false
}).done(function(data){
if(data.ok){
// mostrarRespuesta('El archivo ha sido subido correctamente!.', true);
// $("#nombre_archivo, #archivo").val('');
alert("ok");
}else {
alert(data.msg)
}
});
}
la imagen si se sube pero el parametro que estoy mandando no, no se q estoy haciendo mal, si alguien me puede ayudar, se los agradeceré mucho... Saludos!