Hanami中如何设置404错误响应格式为JSON

How to set 404 error response format to JSON in Hanami

我正在为 Hanami ruby 网络框架的应用程序编写 REST API,我想知道如何将错误格式设置为 JSON。例如,当 404 错误发生时,它应该 return 响应正文 {'message': 'Method not found'}, and Content-Type: 'application/json'

您需要将格式设置为 json。

format: :json

查看 Mime 类型 Documentation