1 回答
TA贡献1862条经验 获得超6个赞
它不允许您存储文件,因为文件无法发送到服务器,因为您使用 AJAX 发出请求,要通过 AJAX 发送文件,请尝试以下操作:
$('#servicio_form').on('submit', function(event){
event.preventDefault();
// init formData and get files
let formData = new FormData($('#servicio_form')[0]);
let imagenInicio = $('#imagen_inicio')[0].files[0];
let imagenFin= $('#imagen_fin')[0].files[0];
let pdfReporte= $('#pdf_reporte')[0].files[0];
// append files to formData
formData.append('imagen_inicio', imagenInicio);
formData.append('imagen_fin', imagenFin);
formData.append('pdf_reporte', pdfReporte);
// in AJAX disable contentType, processData and cache
$.ajax({
url:"{{ route('mis-servicios.postdata') }}",
method:"POST",
dataType:"json",
data: formData, // change this and the following options
contentType: false,
processData: false,
cache: false,
success: function(data) {
// your code...
}
});
});
- 1 回答
- 0 关注
- 205 浏览
添加回答
举报