Answers for "laravel ajax file"

0

laravel ajax file

$.ajaxSetup({
    headers: {
        'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
    }
});

//click function // this ajax call include file/image/etc
let formData = new FormData(form);
$.ajax({
    type:'POST',
    url:'{{ route('url') }}',
    data: formData,
    contentType: false,
    processData: false,
    cache: false,
    beforeSend: function() {
        $("#full_loading").show();
    },
    success: (response) => {
        if (response) {           
            if(response.param == true) {          
                window.location.href = "{{ route('url','id') }}".replace("id", response.id);    
            }
        }
    },
    error: function(response){
        console.log(response);
    }
});
Posted by: Guest on April-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language