“jquery post ulload file” Ответ

jquery post ulload file


 $(document).ready(function() {
     $('#ProblemUpload').submit(function(e){
         e.preventDefault();
          $('#ProblemUpload').find('button').prop('disabled',true);
            var file_data = $('#fileData').prop('files')[0];   
            var form_data = new FormData();                  
            form_data.append('file', file_data);
            form_data.append('action', 'upload_sheet');
            $('#loaderWapper').slideDown();                         
            $.ajax({
                url: baseUrl+'apis/auth.php', // <-- point to server-side PHP script 
                dataType: 'text',  // <-- what to expect back from the PHP script, if anything
                cache: false,
                contentType: false,
                processData: false,
                data: form_data,                         
                type: 'post',
                success: function(php_script_response){
                    let response = JSON.parse(php_script_response);
                    if(response.status == 'success'){
                        alertify.alert('Data inserted',response.msg );
                        $('#ProblemUpload').trigger('reset');
                    }else{
                        alertify.error(response.msg)
                    }
                    $('#loaderWapper').slideUp();    
                    $('#ProblemUpload').find('button').prop('disabled',false);
                }
            });
     })
 })
Singh99

Загрузка файла в jQuery

$(function(){
    $('#uploadBTN').on('click', function(){ 
        var fd = new FormData($("#fileinfo"));
        //fd.append("CustomField", "This is some extra data");
        $.ajax({
            url: 'upload.php',  
            type: 'POST',
            data: fd,
            success:function(data){
                $('#output').html(data);
            },
            cache: false,
            contentType: false,
            processData: false
        });
    });
});
Careful Cobra

Ответы похожие на “jquery post ulload file”

Вопросы похожие на “jquery post ulload file”

Больше похожих ответов на “jquery post ulload file” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования