使用Plupload将文件上传到云存储服务提供商。不想让浏览器在下载时预览图像,因此需要在上传时将所有文件content-type
更改为application/octet-stream
。
但是尚未在plupload中看到此API设置。上载图片form-data
参数时,总是将Contect-Type
设置为image/png
Content-Disposition: form-data; name="file"; filename="type.png"
Content-Type: image/png
我该如何解决?