Can jQuery-File-Upload get the result from the API in the done callback under IE9?

https://codeshelper.com/q/10.

I have seen this problem, which is similar to mine. However, the result in my done on iE9 is "undefined", which can return
IE9:

chrome:

in both IE10 and chrome.

look for answers!
Thank you!

this is my code:

$("-sharpfileupload2").fileupload({
        filesContainer: $("table.files"),
        url: uploadPath+"/uploadFile",
        headers: { "token": sotrage.getItem("token") },
        done: function (a, b,c) {
            console.log(a);
            console.log(b);
            console.log(c);
        }
       
    });
Menu