我上传的TXT格式文件下载后格式变了
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我上传的TXT格式文件下载后格式变了相关的知识,希望对你有一定的参考价值。
我在QQ硬盘上上传了一个TXT格式的文件,今天去下载就变成跟图片那样的格式了,用记事本打开全是乱码了,里面的资料很重要的,没有办法弄回来呀。。。急呀。。。。
参考技术A 没下载好吧 下载好了的话看看后缀 参考技术B 可能是你上传时出现问题,你要把你上传的文件打包成RAR格式,你的TXT格式好像不行哟如何在葡萄招摇导轨上上传文件? (错误:不支持请求的格式“txt”)
【中文标题】如何在葡萄招摇导轨上上传文件? (错误:不支持请求的格式“txt”)【英文标题】:How to upload files in grape swagger rails? (Error: The requested format 'txt' is not supported) 【发布时间】:2020-12-23 11:16:04 【问题描述】:我需要使用 Grape UI 实现文件上传。我们有这些宝石:
gem 'grape'
gem 'grape-entity'
gem 'grape-papertrail'
gem 'grape-swagger'
gem 'grape-swagger-entity'
在我的attachments_api.rb中:
# frozen_string_literal: true
module V1
class AttachmentsAPI < ApplicationAPI
content_type :pdf, 'multipart/form-data'
resource :attachments do
desc 'Upload attchment file'
params do
requires :file, type: File, documentation: param_type: 'formData', data_type: 'file'
end
post do
byebug
end
end
end
end
但是当我在 UI (https://editor.swagger.io/) 中运行它时,我每次都会遇到相同的错误(我尝试附加的 txt 文件、png 或 pdf 无关紧要):
The requested format 'txt' is not supported.
生成的json_doc看起来比较奇怪:
paths:
/attachments:
post:
description: Upload attchment file
produces:
- application/json
consumes:
- application/json
parameters:
- in: formData
name: file
type: file
required: true
responses:
'201':
description: Upload attchment file
tags:
- attachments
operationId: postAttachments
我不明白为什么我们会看到那里
consumes:
- application/json
如何解决此错误并正确上传文件?感谢您的帮助!
【问题讨论】:
consumes
必须是 multipart/form-data
。检查grape-swagger是否有一个注释来覆盖consumes
值。
【参考方案1】:
这解决了问题:
desc 'Upload attachment file', consumes: ['multipart/form-data']
【讨论】:
以上是关于我上传的TXT格式文件下载后格式变了的主要内容,如果未能解决你的问题,请参考以下文章
win10电脑做的TXt文档发到win7电脑上格式就变了怎么设置win7电脑?
如何在葡萄招摇导轨上上传文件? (错误:不支持请求的格式“txt”)
文件上传(支持csv,xls,xlsx,txt格式)把文件导入到minio,还需要生成一个demo临时文件只放10条数据
文件上传(支持csv,xls,xlsx,txt格式)把文件导入到minio,还需要生成一个demo临时文件只放10条数据