get file names from uploadify jquery plugin

做~自己de王妃 提交于 2019-12-01 08:51:52

问题


that is my first post

I am trying here, to get the names of the files that are uploaded, so that the user can delete it if desired, the same way as yahoo.

$("#uploadifysub1").uploadify({ 'uploader' : 'JS/uploadify.swf', 'script' : 'JS/uploadify.php', 'cancelImg' : 'cancel.png', 'buttonImg' : 'attach.png', 'folder' : 'uploads', 'queueID' : 'divquickuploadProgress1', 'auto' : true, 'multi' : true });

the problem is that I cannot get files names, any suggestions?

is there any function in uploadify, that can remove an uploaded file, or I have to do that myself??

Thanks in advance.


回答1:


Quote from uploadify

fileDataName

The name of your files array in the upload server script. Default = ‘Filedata’

PHP code

$_FILES['Filedata']['tmp_name'];



回答2:


thanks to "Codler", I could solve this problem, I will share the code, maybe it will help.

$("#uploadifysub1").uploadify({
        'uploader'       : 'JS/uploadify.swf',
        'script'         : 'JS/uploadify.php',
        'cancelImg'      : 'cancel.png',
        'buttonImg'      : 'attach.png',
        'folder'         : 'uploads',
        'queueID'        : 'divquickuploadProgress1',
        'auto'           : true,
        'multi'          : true,
        'onComplete'     : function(event, queueID, fileObj, reposnse, data) {
            // write your own implementation
                           }
    });

my implementation was like that

var cod = '<tr>';
cod += '<td align="left">'+fileObj.name+'</td>';
cod += '<td align="left">';
cod += '<span onclick="removeprev(this,'+fileObj.name+')" style="cursor: pointer;">&nbsp;';
cod += '[remove]</span>';
cod += '</td>';
cod += '</tr>';
$('#uploaded_files').append(cod);

Thanks again




回答3:


why didn't you just set the removeCompleted option to false. It queues all the uploaded files.



来源:https://stackoverflow.com/questions/3440295/get-file-names-from-uploadify-jquery-plugin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!