Transloadit:在 request.body.read 不为空时发送 0 字节文件
我正在使用 transloadit 并使用 valuemns 文件上传器通过 xhr 发送文件。
文件发送到服务器时没有错误(我检查了 request.body.read 的大小和内容),但是一旦我这样做了:
response = assembly.submit! (request.body)
发送一个空文件(我在程序集历史记录页面中检查了很多次)。
谢谢你的帮助。
I'm using transloadit and sending files with xhr using valumns file uploader.
Files are sent to the server without errors (i checked size and content of request.body.read) but once I do:
response = assembly.submit! (request.body)
An empty file is sent (I checked many times in the assemblies history page).
Thanks for you help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在使用
request.body
之前调用request.body.rewind
。Call
request.body.rewind
before usingrequest.body
.