gpt4 book ai didi

ruby-on-rails - 葡萄 : Rescue from invalid JSON

转载 作者:数据小太阳 更新时间:2023-10-29 07:06:34 27 4
gpt4 key购买 nike

首先:

我正在使用 grape 构建我的 API (Rails 4)。当有人发送无效的 JSON 正文时(例如忘记最后一个 }),会引发以下错误:

ActionDispatch::ParamsParser::ParseError (795: unexpected token at '{"foobar": 1234

')

我尝试使用 grapes rescue_from :all 选项,但这不起作用。在堆栈跟踪中,我没有看到涉及的葡萄 gem 。这个错误似乎是从 actionpack 中抛出的:

  .gems/gems/actionpack-4.1.4/lib/action_dispatch/middleware/params_parser.rb:53:in `rescue in parse_formatted_parameters'
.gems/gems/actionpack-4.1.4/lib/action_dispatch/middleware/params_parser.rb:32:in `parse_formatted_parameters'
.gems/gems/actionpack-4.1.4/lib/action_dispatch/middleware/params_parser.rb:23:in `call'

但是捕获这些错误、返回 400: Bad Request 错误并在 '{"foobar": 1234 处包含 意外标记的最佳方法是什么? json 响应中的消息?



第二:



我尝试使用 RSpec 对此进行测试,但没有成功发送带有无效 JSON 的原始请求。我试过



post "/my_route", '{some invalid json'

但这不会从上面抛出错误。我认为自从 Rails 4 以来,作为字符串传递的第二个参数被视为原始主体?

最佳答案

不幸的是,ActionDispatch 在到达 Controller 之前运行得很好,因此您将无法使用 Grape (AFAIK) 执行此操作。

我们也遇到了这个问题,发现了一个 wonderful article来自关于该主题的 Thoughtbot 人员。

使用 Curb gem 进行快速调用:

require 'curb'
it 'sends poorly formatted json' do
broken_json = %Q|{"notice":{"title":"A sweet title"#{invalid_tokens}}}|
resp = Curl.post("http://#{host}:#{port}#{path}", broken_json)

expect(resp.response_code).to eq 500
end

Thoughtbot 建议编写一个中间件类来捕获 future 的 JSON 解析错误,如下所示:

# in app/middleware/catch_json_parse_errors.rb
class CatchJsonParseErrors
def initialize(app)
@app = app
end

def call(env)
begin
@app.call(env)
rescue ActionDispatch::ParamsParser::ParseError => error
if env['HTTP_ACCEPT'] =~ /application\/json/
error_output = "There was a problem in the JSON you submitted: #{error}"
return [
400, { "Content-Type" => "application/json" },
[ { status: 400, error: error_output }.to_json ]
]
else
raise error
end
end
end
end

关于ruby-on-rails - 葡萄 : Rescue from invalid JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28811796/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com