문제

This is uploadcare question.

we have .done() .fail() .progress() in fileFrom() for single file so we can tracking the upload file.

But we don't have .done() .fail() .progress() in `filesFrom() multiple files, how can we track the files?

도움이 되었습니까?

해결책

uploadcare.filesFrom() returns array of files, each one has .done(), .fail(), .progress().

E.g:

    var files = uploadcare.filesFrom('uploaded', [uuid1, uuid2, uuid3]);
    $.each(files, function(i, f) {
        f.done(console.log);
    })
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top