使用 blueimp jQuery 文件上传和 PUT 到 WCF

发布于 2024-11-29 17:55:30 字数 712 浏览 1 评论 0原文

我正在使用位于此处的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉世弥音 2024-12-06 17:55:30

仅支持 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文