使用 blueimp jQuery 文件上传和 PUT 到 WCF
我正在使用位于此处的 blueimp jQuery 文件上传插件 https://github.com/blueimp /jQuery-File-Upload 并根据文档,我应该能够使用 HTTP PUT 上传文件。这是我的 init
$('#fileupload').fileupload({
url: baseServer + '/image/upload',
type: 'PUT',
multipart: false
}
根据 stackoverflow 答案 使用 jquery 将文件上传到 wcf 和如何使用 HTTP 上传文件使用 JQuery“PUT”? 这应该是可能的,但是当我使用 fiddler 检查线路上的数据时,我发现标题设置正确,但正文是空的。
有人有在 IE9 中从本地文件使用此插件的工作示例吗?
I am using the blueimp jQuery file upload plug-in located here https://github.com/blueimp/jQuery-File-Upload and according to the documentation I should be able to upload a file using HTTP PUT. Here is my init
$('#fileupload').fileupload({
url: baseServer + '/image/upload',
type: 'PUT',
multipart: false
}
According to the stackoverflow answers file upload to wcf using jquery and How to upload a file using an HTTP "PUT" using JQuery? this should be possible however when I examine the data on the wire using fiddler, I see that the headers are set correctly but the body is empty.
Does anyone have a working example of using this plug-in in IE9 from a local file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅支持 XHR 文件上传的浏览器支持使用 HTTP PUT 请求的文件上传(请参阅 浏览器支持信息)。
jQuery 文件上传插件利用了 IE 和 Opera 的 iframe 传输插件。
iframe 传输文件上传依赖于标准 HTML 表单,该表单仅支持文件上传的 HTTPS POST 请求。
我已经更新了 选项文档,并添加了解释此限制的注释。
File uploads using HTTP PUT requests are only supported by browsers with support for XHR file uploads (see Browser support information).
The jQuery File Upload plugin makes use of the iframe transport plugin for IE and Opera.
Iframe transport file uploads rely on standard HTML forms which only support HTTPS POST requests for file uploads.
I've updated the Options documentation with a note explaining this limitation.