Debugging a FileQueueError using Swfupload
My swfupload implementation is triggering the fileQueueError function when I try to select multiple files. When I select one file the upload works as expected.
I'm开发者_如何学运维 logging the variables passed to the javascript functions and here's what I get anytime I select more than one file.
fileQueueError file : null
errorCode : -100 message : 1fileDialogComplete
Anyone got suggestions on how to trace the source of the error?
According to the file SWFUpload.js:
SWFUpload.QUEUE_ERROR = {
QUEUE_LIMIT_EXCEEDED : -100,
FILE_EXCEEDS_SIZE_LIMIT : -110,
ZERO_BYTE_FILE : -120,
INVALID_FILETYPE : -130
};
so,QUEUE_LIMIT_EXCEEDED
精彩评论