क्या कोई समझा सकता है कि jQuery फ़ाइल अपलोड प्लगइन को कैसे लागू किया जाए?


116

EDIT (अक्टूबर 2019):

6 साल बाद और jQuery फ़ाइल अपलोड स्पष्ट रूप से अभी भी लोगों को पागल कर रहा है। यदि आप यहां जवाबों में थोड़ा सांत्वना पा रहे हैं, तो आधुनिक विकल्प के लिए एनपीएम की खोज करें । यह परेशानी के लायक नहीं है, मैं वादा करता हूं।

मैंने पिछले संपादन में Uploadify की सिफारिश की, लेकिन एक टिप्पणीकार के रूप में, वे अब मुफ्त संस्करण की पेशकश नहीं करते हैं। अपलोड तो वैसे भी 2013 था ।


संपादित करें:

यह अभी भी यातायात हो रहा है तो मैं समझाता हूं कि मैंने क्या किया। मुझे अंततः स्वीकृत उत्तर में ट्यूटोरियल का अनुसरण करके प्लगइन काम कर रहा है। हालांकि, jQuery फाइल अपलोड एक असली परेशानी है और आप एक सरल फ़ाइल अपलोड प्लगइन के लिए देख रहे हैं, मैं अत्यधिक की सिफारिश करेंगे Uploadify । एक उत्तर के रूप में, यह केवल गैर-व्यावसायिक उपयोग के लिए स्वतंत्र है।


पृष्ठभूमि

मैं उपयोगकर्ताओं को फ़ाइलों को अपलोड करने की अनुमति देने के लिए ब्लिंप के jQuery फ़ाइल अपलोड का उपयोग करने का प्रयास कर रहा हूं । बॉक्स से बाहर यह पूरी तरह से काम करता है , सेटअप निर्देशों का पालन करता है। लेकिन व्यावहारिक रूप से अपनी वेबसाइट पर इसका उपयोग करने के लिए, मैं कुछ चीजों को करने में सक्षम होना चाहता हूं:

  • मेरे किसी भी मौजूदा पेज पर अपलोडर शामिल करें
  • अपलोड की गई फ़ाइलों के लिए निर्देशिका बदलें

प्लगइन के लिए सभी फाइलें रूट के तहत एक फ़ोल्डर में स्थित हैं।

मैंने कोशिश की...

  • डेमो पेज को रूट में ले जाना और आवश्यक स्क्रिप्ट के लिए पथ अपडेट करना
  • यहां सुझाए अनुसार UploadHandler.php फ़ाइल में 'upload_dir' और 'upload_url' विकल्प बदलना ।
  • URL को डेमो जावास्क्रिप्ट की दूसरी पंक्ति में बदलना

सभी मामलों में, पूर्वावलोकन दिखाता है, और प्रगति बार रन है, लेकिन फाइल अपलोड करने में विफल रहते हैं, और मैं कंसोल में इस त्रुटि मिलती है: Uncaught TypeError: Cannot read property 'files' of undefined। मुझे समझ नहीं आता कि प्लगइन के सभी भाग कैसे काम करते हैं जो डिबग करना मुश्किल बना रहा है।

कोड

जावास्क्रिप्ट डेमो पृष्ठ में:

$(function () {
'use strict';
// Change this to the location of your server-side upload handler:
var url = 'file_upload/server/php/UploadHandler.php',
    uploadButton = $('<button/>')
        .addClass('btn')
        .prop('disabled', true)
        .text('Processing...')
        .on('click', function () {
            var $this = $(this),
                data = $this.data();
            $this
                .off('click')
                .text('Abort')
                .on('click', function () {
                    $this.remove();
                    data.abort();
                });
            data.submit().always(function () {
                $this.remove();
            });
        });
$('#fileupload').fileupload({
    url: url,
    dataType: 'json',
    autoUpload: false,
    acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i,
    maxFileSize: 5000000, // 5 MB
    // Enable image resizing, except for Android and Opera,
    // which actually support image resizing, but fail to
    // send Blob objects via XHR requests:
    disableImageResize: /Android(?!.*Chrome)|Opera/
        .test(window.navigator.userAgent),
    previewMaxWidth: 100,
    previewMaxHeight: 100,
    previewCrop: true
}).on('fileuploadadd', function (e, data) {
    data.context = $('<div/>').appendTo('#files');
    $.each(data.files, function (index, file) {
        var node = $('<p/>')
                .append($('<span/>').text(file.name));
        if (!index) {
            node
                .append('<br>')
                .append(uploadButton.clone(true).data(data));
        }
        node.appendTo(data.context);
    });
}).on('fileuploadprocessalways', function (e, data) {
    var index = data.index,
        file = data.files[index],
        node = $(data.context.children()[index]);
    if (file.preview) {
        node
            .prepend('<br>')
            .prepend(file.preview);
    }
    if (file.error) {
        node
            .append('<br>')
            .append(file.error);
    }
    if (index + 1 === data.files.length) {
        data.context.find('button')
            .text('Upload')
            .prop('disabled', !!data.files.error);
    }
}).on('fileuploadprogressall', function (e, data) {
    var progress = parseInt(data.loaded / data.total * 100, 10);
    $('#progress .bar').css(
        'width',
        progress + '%'
    );
}).on('fileuploaddone', function (e, data) {
    $.each(data.result.files, function (index, file) {
        var link = $('<a>')
            .attr('target', '_blank')
            .prop('href', file.url);
        $(data.context.children()[index])
            .wrap(link);
    });
}).on('fileuploadfail', function (e, data) {
    $.each(data.result.files, function (index, file) {
        var error = $('<span/>').text(file.error);
        $(data.context.children()[index])
            .append('<br>')
            .append(error);
    });
}).prop('disabled', !$.support.fileInput)
    .parent().addClass($.support.fileInput ? undefined : 'disabled');
});


मैं प्रलेखन की कमी से हैरान हूं; ऐसा लगता है कि इसे बदलना एक साधारण बात होनी चाहिए। अगर कोई यह समझा सकता है कि मुझे यह कैसे करना है तो मैं सराहना करूंगा।


10
अच्छा प्रश्न प्रारूप। संगठन को देखकर अच्छा लगा।
जॉर्डन

त्रुटि पंक्ति से ठीक पहले कंसोल में 'e' और 'data' प्रिंट करें, मान क्या हैं?
जॉन 4d5

3
Uploadi fy एमआईटी लाइसेंस है जैसे यह पूरी तरह से मुफ्त है। हालाँकि, एक ही देव / वेबसाइट से Uploadi पाँच $ 5- $ 100 उपयोग के आधार पर है
मार्टिनजे

2
दो साल में jQuery-File-Upload प्रलेखन किसी भी बेहतर नहीं मिला है। अरे।
चॉक ले बट

1
@MartinJH कुछ बिंदु पर अपलोड हो सकता है, लेकिन अब तक केवल एक ही है - सशुल्क अपलोडीफाइव संस्करण। और कोई डेमो भी नहीं है; यह एक वीडियो है। गरीब का रूप।
स्टीव होर्वाथ

जवाबों:


72

मैं कुछ दिन पहले इसी तरह की कार्यक्षमता की तलाश में था और ट्यूटोरियलज़ाइन पर एक अच्छे ट्यूटोरियल के साथ आया। यहाँ एक कार्य उदाहरण है। पूरा ट्यूटोरियल यहां पाया जा सकता है

फ़ाइल अपलोड संवाद को रखने का सरल रूप:

<form id="upload" method="post" action="upload.php" enctype="multipart/form-data">
  <input type="file" name="uploadctl" multiple />
  <ul id="fileList">
    <!-- The file list will be shown here -->
  </ul>
</form>

और यहाँ फ़ाइलों को अपलोड करने के लिए jQuery कोड है:

$('#upload').fileupload({

  // This function is called when a file is added to the queue
  add: function (e, data) {
    //This area will contain file list and progress information.
    var tpl = $('<li class="working">'+
                '<input type="text" value="0" data-width="48" data-height="48" data-fgColor="#0788a5" data-readOnly="1" data-bgColor="#3e4043" />'+
                '<p></p><span></span></li>' );

    // Append the file name and file size
    tpl.find('p').text(data.files[0].name)
                 .append('<i>' + formatFileSize(data.files[0].size) + '</i>');

    // Add the HTML to the UL element
    data.context = tpl.appendTo(ul);

    // Initialize the knob plugin. This part can be ignored, if you are showing progress in some other way.
    tpl.find('input').knob();

    // Listen for clicks on the cancel icon
    tpl.find('span').click(function(){
      if(tpl.hasClass('working')){
              jqXHR.abort();
      }
      tpl.fadeOut(function(){
              tpl.remove();
      });
    });

    // Automatically upload the file once it is added to the queue
    var jqXHR = data.submit();
  },
  progress: function(e, data){

        // Calculate the completion percentage of the upload
        var progress = parseInt(data.loaded / data.total * 100, 10);

        // Update the hidden input field and trigger a change
        // so that the jQuery knob plugin knows to update the dial
        data.context.find('input').val(progress).change();

        if(progress == 100){
            data.context.removeClass('working');
        }
    }
});
//Helper function for calculation of progress
function formatFileSize(bytes) {
    if (typeof bytes !== 'number') {
        return '';
    }

    if (bytes >= 1000000000) {
        return (bytes / 1000000000).toFixed(2) + ' GB';
    }

    if (bytes >= 1000000) {
        return (bytes / 1000000).toFixed(2) + ' MB';
    }
    return (bytes / 1000).toFixed(2) + ' KB';
}

और यहां डेटा को संसाधित करने के लिए PHP कोड नमूना है:

if($_POST) {
    $allowed = array('jpg', 'jpeg');

    if(isset($_FILES['uploadctl']) && $_FILES['uploadctl']['error'] == 0){

        $extension = pathinfo($_FILES['uploadctl']['name'], PATHINFO_EXTENSION);

        if(!in_array(strtolower($extension), $allowed)){
            echo '{"status":"error"}';
            exit;
        }

        if(move_uploaded_file($_FILES['uploadctl']['tmp_name'], "/yourpath/." . $extension)){
            echo '{"status":"success"}';
            exit;
        }
        echo '{"status":"error"}';
    }
    exit();
}

उपरोक्त कोड को किसी भी मौजूदा फॉर्म में जोड़ा जा सकता है। यह कार्यक्रम स्वचालित रूप से चित्र अपलोड करता है, एक बार जब वे जुड़ जाते हैं इस कार्यक्षमता को बदला जा सकता है और आप छवि को प्रस्तुत कर सकते हैं, जबकि आप अपना मौजूदा फॉर्म जमा कर रहे हैं।

वास्तविक कोड के साथ मेरे जवाब को अपडेट किया। सभी कोड के मूल लेखक को श्रेय देते हैं।

स्रोत: http://tutorialzine.com/2013/05/mini-ajax-file-upload-form/


2
क्या आप उस ट्यूटोरियल के महत्वपूर्ण हिस्सों को यहां कॉपी कर सकते हैं, इसलिए यदि यह गायब हो जाता है तो आपका उत्तर अभी भी उपयोगी है?

1
लेकिन सावधान रहें कि कोई चोरी न करें
tacaswell

1
ध्यान दें: PHP कोड स्निपेट का उपयोग करने वाले किसी भी व्यक्ति के if($_POST) बयान को हटा दें । माना जाता है कि फ़ाइल भेजने के लिए POST खाली होना चाहिए $_FILES['upfile']['tmp_name']। उम्मीद है कि यह किसी को कुछ समय बचाता है।
एडवर्ड


क्या कोई मुझे सुझाव दे सकता है कि उपरोक्त स्क्रिप्ट को चलाने के लिए js / jquery फ़ाइलों की क्या आवश्यकता है
मानसा

28

मैंने jQuery अपलोड से जूझते हुए केवल 2 घंटे बिताए हैं, लेकिन निर्भरता की मात्रा के कारण छोड़ दिया (मेरे पास 13 जेएस फाइलें थीं, जिसमें सभी घंटियाँ और सीटी शामिल थीं)।

मैंने थोड़ी और खोज की और एक साफ सुथरी परियोजना शुरू की Dropzone.js , जिसमें कोई निर्भरता नहीं है।

लेखक ने बूटस्ट्रैप डेमो भी बनाया है जो jQuery फ़ाइल अपलोड प्लगइन से प्रेरित था।

मुझे उम्मीद है कि यह किसी और को कुछ समय बचाता है।


1
नोट करने के लिए महत्वपूर्ण बात: Dropzone.js अच्छा लग रहा है, लेकिन यह केवल IE10 और उच्चतर से समर्थन करता है। IE6 से jQuery फ़ाइल अपलोड समर्थन करता है;)
निकवेदा

11
jQuery फ़ाइल अपलोड यह काम करने के लिए सिर्फ असंभव है ... मैंने कई घंटे की कोशिश की क्योंकि इसमें बहुत अच्छी विशेषताएं हैं, लेकिन अंतिम समय में मेरी आत्मा केवल पीड़ा से भर गई थी !!! कैसा विवाद !!! तब मैंने Dropzone.js के बारे में आपकी पोस्ट देखी और 5 मिनट में मैं इसे काम कर रहा था और जिस तरह से मैं चाहता था! तुम मुझे बचा लिया ...
rigon

आपको पर्याप्त धन्यवाद नहीं दे सकता, मैंने jQuery-FIle-Upload को अपने इच्छित तरीके से काम करने में लगभग 12 घंटे बिताए हैं और आखिरकार मैं इस प्रश्न पर ठोकर खा गया। तुमने मुझे बचाया।
ndd

यहाँ एक डेटाबेस संचालित jquery फ़ाइल अपलोड उदाहरण है: github.com/CodeHeight/ImageLibrary
JoshYates1980

मैंने 3 दिन बिताए लेकिन मैं अभी भी उनके कोड को कस्टम नहीं कर सकता
मई वेदर VN

4

मैंने इसके साथ संघर्ष भी किया, लेकिन एक बार मुझे यह पता चल गया कि अपलोडहैंडलर में कैसे पथ काम करते हैं। मुझे पता है: upload_dir और upload_url इसे काम करने के लिए देखने के लिए केवल सेटिंग्स के बारे में हैं। डिबगिंग जानकारी के लिए अपने सर्वर त्रुटि लॉग की भी जाँच करें।


3

ड्रॉपर jquery प्लगइन का उपयोग करके छवि पूर्वावलोकन के साथ छवि खींचें और ड्रॉप अपलोडर देखें।

एचटीएमएल

<div class="target" width="78" height="100"><img /></div>

जे एस

$(".target").dropper({
    action: "upload.php",

}).on("start.dropper", onStart);
function onStart(e, files){
console.log(files[0]);

    image_preview(files[0].file).then(function(res){
$('.dropper-dropzone').empty();
//$('.dropper-dropzone').css("background-image",res.data);
 $('#imgPreview').remove();        
$('.dropper-dropzone').append('<img id="imgPreview"/><span style="display:none">Drag and drop files or click to select</span>');
var widthImg=$('.dropper-dropzone').attr('width');
        $('#imgPreview').attr({width:widthImg});
    $('#imgPreview').attr({src:res.data});

    })

}

function image_preview(file){
    var def = new $.Deferred();
    var imgURL = '';
    if (file.type.match('image.*')) {
        //create object url support
        var URL = window.URL || window.webkitURL;
        if (URL !== undefined) {
            imgURL = URL.createObjectURL(file);
            URL.revokeObjectURL(file);
            def.resolve({status: 200, message: 'OK', data:imgURL, error: {}});
        }
        //file reader support
        else if(window.File && window.FileReader)
        {
            var reader = new FileReader();
            reader.readAsDataURL(file);
            reader.onloadend = function () {
                imgURL = reader.result;
                def.resolve({status: 200, message: 'OK', data:imgURL, error: {}});
            }
        }
        else {
            def.reject({status: 1001, message: 'File uploader not supported', data:imgURL, error: {}});
        }
    }
    else
        def.reject({status: 1002, message: 'File type not supported', error: {}});
    return def.promise();
}

$('.dropper-dropzone').mouseenter(function() {
 $( '.dropper-dropzone>span' ).css("display", "block");
});

$('.dropper-dropzone').mouseleave(function() {
 $( '.dropper-dropzone>span' ).css("display", "none");
});

सीएसएस

.dropper-dropzone{
    width:78px;
padding:3px;
    height:100px;
position: relative;
}
.dropper-dropzone>img{
    width:78px;
    height:100px;
margin-top=0;
}

.dropper-dropzone>span {
    position: absolute;
    right: 10px;
    top: 20px;
color:#ccc;


}

.dropper .dropper-dropzone{

padding:3px !important    
}

डेमो Jsfiddle


यह एक अत्यंत सरल उपाय है।
मिरॉन

2

यह फ़ाइलों को अपलोड करने के लिए अच्छा कोणीय प्लगइन है, और यह मुफ़्त है!

कोणीय फ़ाइल अपलोड


2
नमस्ते। कृपया उत्तर के रूप में लिंक पोस्ट न करें, यदि साइट ऑफ़लाइन हो जाती है या लिंक बदल जाती है, तो आपका उत्तर बेकार हो जाएगा। इसके बजाय, अपने उत्तर का निर्माण करने के लिए साइट पर जानकारी का उपयोग करें और केवल संदर्भ के रूप में लिंक का उपयोग करें। धन्यवाद।
Cululhu

1

मैं थोड़ी देर के लिए रेल पर इस प्लगइन से जूझ रहा था, और फिर किसी ने इसे मेरे द्वारा बनाए गए सभी कोड को रोशन कर दिया।

हालाँकि ऐसा लगता है कि आप इसका उपयोग रेल में नहीं कर रहे हैं, हालाँकि यदि कोई इसका उपयोग कर रहा है तो यह रत्न चेकआउट करें । स्रोत यहाँ है -> jQueryFileUpload रेल

अपडेट करें:

टिप्पणीकार को संतुष्ट करने के लिए मैंने अपना उत्तर अपडेट कर दिया है। अनिवार्य रूप से " इस मणि का उपयोग करें , " यहां स्रोत कोड है " यदि यह गायब हो जाता है तो इसे लंबा रास्ता तय करें।



1

Droply.js इसके लिए एकदम सही है। यह सरल है और एक डेमो साइट के साथ पूर्व-पैक किया गया है जो बॉक्स से बाहर काम करता है।


0

आप अपलोड का उपयोग कर सकते हैं यह सबसे अच्छा multiupload jQuery है प्लगइन मैं का इस्तेमाल किया है।

कार्यान्वयन आसान है, ब्राउज़र समर्थन एकदम सही है।


7
फ़्लैश की आवश्यकता ... :(
ईवा

2
आप HTML 5 वर्जन :)
CORSAIR

5
अगर मैं गलत नहीं हूं, तो अपलोड का html5 संस्करण मुफ्त नहीं है। इसकी कीमत $ 5 है। uploadify.com/download
0112

2
लेकिन, यह केवल 5 $ 500 नहीं है।
कॉर्सिएर

7
मन में भालू, आप वाणिज्यिक प्रयोजनों के लिए uploadify उपयोग करना चाहते हैं आप वाणिज्यिक लाइसेंस ($ 100) खरीदने की जरूरत uploadify.com/download/download-uploadifive-commercial
टिम

0

यूआई प्लगइन के लिए, जेएसपी पेज और स्प्रिंग एमवीसी के साथ ।।

नमूना htmlफ़ाइलअपलोड की एक आईडी विशेषता के साथ एक फार्म तत्व के भीतर होने की आवश्यकता है

    <!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
<div class="fileupload-buttonbar">
    <div>
        <!-- The fileinput-button span is used to style the file input field as button -->
        <span class="btn btn-success fileinput-button">
            <i class="glyphicon glyphicon-plus"></i>
            <span>Add files</span>
            <input id="fileuploadInput" type="file" name="files[]" multiple>
        </span>
        <%-- https://stackoverflow.com/questions/925334/how-is-the-default-submit-button-on-an-html-form-determined --%>
        <button type="button" class="btn btn-primary start">
            <i class="glyphicon glyphicon-upload"></i>
            <span>Start upload</span>
        </button>
        <button type="reset" class="btn btn-warning cancel">
            <i class="glyphicon glyphicon-ban-circle"></i>
            <span>Cancel upload</span>
        </button>
        <!-- The global file processing state -->
        <span class="fileupload-process"></span>
    </div>
    <!-- The global progress state -->
    <div class="fileupload-progress fade">
        <!-- The global progress bar -->
        <div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100">
            <div class="progress-bar progress-bar-success" style="width:0%;"></div>
        </div>
        <!-- The extended global progress state -->
        <div class="progress-extended">&nbsp;</div>
    </div>
</div>
<!-- The table listing the files available for upload/download -->
<table role="presentation" class="table table-striped"><tbody class="files"></tbody></table>

<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/js/jquery-file-upload-9.14.2/css/jquery.fileupload.css">
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/js/jquery-file-upload-9.14.2/css/jquery.fileupload-ui.css">

<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-file-upload-9.14.2/js/vendor/jquery.ui.widget.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-file-upload-9.14.2/js/jquery.iframe-transport.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-file-upload-9.14.2/js/jquery.fileupload.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-file-upload-9.14.2/js/jquery.fileupload-process.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-file-upload-9.14.2/js/jquery.fileupload-validate.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-file-upload-9.14.2/js/jquery.fileupload-ui.js"></script>

<script type="text/javascript">
    $(document).ready(function () {
            var maxFileSizeBytes = ${maxFileSizeBytes};
        if (maxFileSizeBytes < 0) {
            //-1 or any negative value means no size limit
            //set to undefined
            ///programming/5795936/how-to-set-a-javascript-var-as-undefined
            maxFileSizeBytes = void 0;
        }

        //https://github.com/blueimp/jQuery-File-Upload/wiki/Options
        ///programming/34063348/jquery-file-upload-basic-plus-ui-and-i18n
        ///programming/11337897/how-to-customize-upload-download-template-of-blueimp-jquery-file-upload
        $('#fileupload').fileupload({
            url: '${pageContext.request.contextPath}/app/uploadResources.do',
            fileInput: $('#fileuploadInput'),
            acceptFileTypes: /(\.|\/)(jrxml|png|jpe?g)$/i,
            maxFileSize: maxFileSizeBytes,
            messages: {
                acceptFileTypes: '${fileTypeNotAllowedText}',
                maxFileSize: '${fileTooLargeMBText}'
            },
            filesContainer: $('.files'),
            uploadTemplateId: null,
            downloadTemplateId: null,
            uploadTemplate: function (o) {
                var rows = $();
                $.each(o.files, function (index, file) {
                    var row = $('<tr class="template-upload fade">' +
                            '<td><p class="name"></p>' +
                            '<strong class="error text-danger"></strong>' +
                            '</td>' +
                            '<td><p class="size"></p>' +
                            '<div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0">' +
                            '<div class="progress-bar progress-bar-success" style="width:0%;"></div></div>' +
                            '</td>' +
                            '<td>' +
                            (!index && !o.options.autoUpload ?
                                    '<button class="btn btn-primary start" disabled>' +
                                    '<i class="glyphicon glyphicon-upload"></i> ' +
                                    '<span>${startText}</span>' +
                                    '</button>' : '') +
                            (!index ? '<button class="btn btn-warning cancel">' +
                                    '<i class="glyphicon glyphicon-ban-circle"></i> ' +
                                    '<span>${cancelText}</span>' +
                                    '</button>' : '') +
                            '</td>' +
                            '</tr>');
                    row.find('.name').text(file.name);
                    row.find('.size').text(o.formatFileSize(file.size));
                    if (file.error) {
                        row.find('.error').text(file.error);
                    }
                    rows = rows.add(row);
                });
                return rows;
            },
            downloadTemplate: function (o) {
                var rows = $();
                $.each(o.files, function (index, file) {
                    var row = $('<tr class="template-download fade">' +
                            '<td><p class="name"></p>' +
                            (file.error ? '<strong class="error text-danger"></strong>' : '') +
                            '</td>' +
                            '<td><span class="size"></span></td>' +
                            '<td>' +
                            (file.deleteUrl ? '<button class="btn btn-danger delete">' +
                                    '<i class="glyphicon glyphicon-trash"></i> ' +
                                    '<span>${deleteText}</span>' +
                                    '</button>' : '') +
                            '<button class="btn btn-warning cancel">' +
                            '<i class="glyphicon glyphicon-ban-circle"></i> ' +
                            '<span>${clearText}</span>' +
                            '</button>' +
                            '</td>' +
                            '</tr>');
                    row.find('.name').text(file.name);
                    row.find('.size').text(o.formatFileSize(file.size));
                    if (file.error) {
                        row.find('.error').text(file.error);
                    }
                    if (file.deleteUrl) {
                        row.find('button.delete')
                                .attr('data-type', file.deleteType)
                                .attr('data-url', file.deleteUrl);
                    }
                    rows = rows.add(row);
                });
                return rows;
            }
        });

    });
</script>

नमूना अपलोड करें और अनुरोध हैंडलर को हटा दें

    @PostMapping("/app/uploadResources")
public @ResponseBody
Map<String, List<FileUploadResponse>> uploadResources(MultipartHttpServletRequest request,
        Locale locale) {
    //https://github.com/jdmr/fileUpload/blob/master/src/main/java/org/davidmendoza/fileUpload/web/ImageController.java
    //https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#using-jquery-file-upload-ui-version-with-a-custom-server-side-upload-handler
    Map<String, List<FileUploadResponse>> response = new HashMap<>();
    List<FileUploadResponse> fileList = new ArrayList<>();

    String deleteUrlBase = request.getContextPath() + "/app/deleteResources.do?filename=";

    //http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/multipart/MultipartRequest.html
    Iterator<String> itr = request.getFileNames();
    while (itr.hasNext()) {
        String htmlParamName = itr.next();
        MultipartFile file = request.getFile(htmlParamName);
        FileUploadResponse fileDetails = new FileUploadResponse();
        String filename = file.getOriginalFilename();
        fileDetails.setName(filename);
        fileDetails.setSize(file.getSize());
        try {
            String message = saveFile(file);
            if (message != null) {
                String errorMessage = messageSource.getMessage(message, null, locale);
                fileDetails.setError(errorMessage);
            } else {
                //save successful
                String encodedFilename = URLEncoder.encode(filename, "UTF-8");
                String deleteUrl = deleteUrlBase + encodedFilename;
                fileDetails.setDeleteUrl(deleteUrl);
            }
        } catch (IOException ex) {
            logger.error("Error", ex);
            fileDetails.setError(ex.getMessage());
        }

        fileList.add(fileDetails);
    }

    response.put("files", fileList);

    return response;
}

@PostMapping("/app/deleteResources")
public @ResponseBody
Map<String, List<Map<String, Boolean>>> deleteResources(@RequestParam("filename") List<String> filenames) {
    Map<String, List<Map<String, Boolean>>> response = new HashMap<>();
    List<Map<String, Boolean>> fileList = new ArrayList<>();

    String templatesPath = Config.getTemplatesPath();
    for (String filename : filenames) {
        Map<String, Boolean> fileDetails = new HashMap<>();

        String cleanFilename = ArtUtils.cleanFileName(filename);
        String filePath = templatesPath + cleanFilename;

        File file = new File(filePath);
        boolean deleted = file.delete();

        if (deleted) {
            fileDetails.put(cleanFilename, true);
        } else {
            fileDetails.put(cleanFilename, false);
        }

        fileList.add(fileDetails);
    }

    response.put("files", fileList);

    return response;
}

आवश्यक जैसन प्रतिक्रिया उत्पन्न करने के लिए नमूना वर्ग

    public class FileUploadResponse {
    //https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#using-jquery-file-upload-ui-version-with-a-custom-server-side-upload-handler

    private String name;
    private long size;
    private String error;
    private String deleteType = "POST";
    private String deleteUrl;

    /**
     * @return the name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name the name to set
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return the size
     */
    public long getSize() {
        return size;
    }

    /**
     * @param size the size to set
     */
    public void setSize(long size) {
        this.size = size;
    }

    /**
     * @return the error
     */
    public String getError() {
        return error;
    }

    /**
     * @param error the error to set
     */
    public void setError(String error) {
        this.error = error;
    }

    /**
     * @return the deleteType
     */
    public String getDeleteType() {
        return deleteType;
    }

    /**
     * @param deleteType the deleteType to set
     */
    public void setDeleteType(String deleteType) {
        this.deleteType = deleteType;
    }

    /**
     * @return the deleteUrl
     */
    public String getDeleteUrl() {
        return deleteUrl;
    }

    /**
     * @param deleteUrl the deleteUrl to set
     */
    public void setDeleteUrl(String deleteUrl) {
        this.deleteUrl = deleteUrl;
    }

}

Https://pitipata.blogspot.co.ke/2017/01/using-jquery-file-upload-ui.html देखें

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.