1

我正在使用这个很棒的 jquery 插件https://github.com/blueimp/jQuery-File-Upload在我的网站上上传图片。

我使用默认的jquery插件代码来获取上传的文件(通过以下方式)

$j('#showUploadedImages').on('click', function() {
    $j.ajax({
        url: '/upload/server/php-general-images/',
        dataType: 'json',
        context: $j('#fileupload')[0],
        data: 'userID=' + $j('#userID').val()
    }).always(function () {
        $j(this).removeClass('fileupload-processing');
    }).done(function (result) {
        $j(this).fileupload('option', 'done')
        .call(this, $j.Event('done'), {result: result});
    });
});

此代码无顺序对图像进行排序,我想按上传日期对列表进行排序。或通过任何其他可能的顺序,如文件名。

有没有办法做到这一点?

4

0 回答 0