You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been using your handler with the javascript files from the blueimp repository.
When a file is posted the handler returns an array of JSON objects with the details of the posted files, but the blueimp javascript expects an object with a single field "files" which contains the array.
You can see in line 79 in jquery.fileupload-angular.js that the result should contain the files property
var files = data.result && data.result.files;
I wasn't sure if you've changed your the javascript to match your handler response or if its out of sync with the latest code from blueimp.
I know it's only a one line fix but if you think it applies then I can clone your repo and submit a pull request. It'd be my first real contribution to the GitHub community :)
The text was updated successfully, but these errors were encountered:
Oops, I didn't even think to look if this repo was still active.
It might be a while before I'm not too distracted by other development to come back to this but I'll definitely try to get it done.
I've not looked at the project or solution but how would you feel about me updating the solution to VS2012 and a more recent version of .NET? (I just copied the handler into my app so could use the anonymous type to add the field to the result as my project is .NET 4.5)
I can also ensure that it contains the latest version of the JQuery File Upload scripts if you want
Hi
I've been using your handler with the javascript files from the blueimp repository.
When a file is posted the handler returns an array of JSON objects with the details of the posted files, but the blueimp javascript expects an object with a single field "files" which contains the array.
So in WriteJsonIFrameSafe you have:
and I have:
You can see in line 79 in jquery.fileupload-angular.js that the result should contain the files property
I wasn't sure if you've changed your the javascript to match your handler response or if its out of sync with the latest code from blueimp.
I know it's only a one line fix but if you think it applies then I can clone your repo and submit a pull request. It'd be my first real contribution to the GitHub community :)
The text was updated successfully, but these errors were encountered: