开发者

How to add files to uploadify from code?

I like uploadify but I need to incorporate a drag'n drop module for the browsers that support this feature.

Right no开发者_如何学Cw the only way to select files is via the browser dialog window. I'd like to have something like:

$("mySelector").uploadify("addFile",{src:...; name:...; etc:...});

This would allow me to get the paths of the files dropped into the browser add them to the upload queue. Is there any way I could achieve this?


You need something like this http://aquantum-demo.appspot.com/file-upload

Note: Uploading files are only possible from file-type-input (browser dialog window), for security reasons. You cannot read path from file-type-input. Not even using JS. Nor you can write the path to a file-type-input.

The plugins like mentioned above, are the UX tricks but all are limited to this security constraint of using file-type-input for uploads. Else, you need something in the line of Flash, ActiveX uploaders, etc that provide queue uploads.


Well after a few months of research it turns out that the file implementation of flash is incompatible with the file implementation of HTML5 that starts to be supported by more and more browsers.

In other words, for security reasons, there is not bridge for sending file objects between the languages.

One research idea would be to implement such a bridge, but that is a discussion for another time. Uploadify 2.x does not support this feature.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜