1

好吧,我一直在创建一些测试代码来尝试清除上传队列,但我只是不知道如何从我所在的位置访问 refresh() 函数。我使用 jQuery UI 小部件作为工作的基础。我使用 INIT 的部分给了我地狱,我似乎无法从我的 json 调用中弄清楚如何刷新()。我希望你能启发我,因为我显然不擅长 jQuery。

    var do_continue = false;

    $("#uploader").plupload({
    // General settings
    runtimes : 'html5,browserplus,silverlight,gears,html4',
    url : CI.base_url + 'private/ad/upload_ad_images',
    max_file_size : '2mb',
    max_file_count: 5, // user can add no more then 20 files at a time
    //chunk_size : '1mb',
    unique_names : true,
    multiple_queues : true,

    // Resize images on clientside if we can
    //resize : {width : 800, height : 600, quality : 90},

    // Rename files by clicking on their titles
    rename: true,

    // Sort files
    sortable: true,

    // Specify what files to browse for
    filters : [
        {title : "Image files", extensions : "jpg,gif,png"}
    ],

    // Flash settings
    flash_swf_url : CI.base_url + 'scripts/plupload/js/plupload.flash.swf',

    // Silverlight settings
    silverlight_xap_url : CI.base_url + 'scripts/plupload/js/plupload.silverlight.xap',
    // Post init events, bound after the internal events
    init : {
        QueueChanged: function(up) {
            // check for max photos here
            $.getJSON(CI.base_url + 'private/ad_ajax/count_uploaded_images/', function(data) {
            if (!data.message) {
                alert("no data found? - please contact us with this message.");
                do_continue = false;
            }else if(data.message != "go") {
                alert("Maximum photo uploads reached.");
                do_continue = false;
            }
            if (!do_continue) {
                $(this).refresh(); // -->> need something that works here
            }
            });
        }
    }
});
4

2 回答 2

3

您到底想在 UI 中刷新什么?据我所知,refresh() 仅在正确位置为运行时重绘 plupload 透明垫片。它不会重新加载整个 UI 或刷新/清除上传队列。

如果您可以详细说明您尝试刷新的内容/原因,我可能会为您提供进一步的帮助。无论哪种方式,基于您的代码的刷新调用如下:

up.refresh();

如果您尝试完全清空上传队列,请执行以下操作:

up.splice();

或从代码中的其他任何地方使用:

var uploader = $('#uploader').plupload('getUploader');
uploader.splice();

您可能还想检查其他可用事件,因为我怀疑您应该检查 FilesAdded 而不是 QueueChanged,但这取决于您要实现的目标。

于 2012-01-13T13:09:34.983 回答
1
$.getJSON(CI.base_url + 'private/ad_ajax/count_uploaded_images/', function(data) {
if(data.message != "go") {
    alert("Maximum photo uploads reached.");
    do_continue = false;
    plupload.each(files, function(file) {
        up.removeFile(file);
    });
}
});

答案是 - up.refresh() 等由于某种原因不起作用。

于 2012-01-23T21:52:05.710 回答