从 Web 服务应用程序检索错误数据

发布于 2024-10-20 18:17:14 字数 658 浏览 3 评论 0原文

我正在使用 Ruby on Rails 3,并且在发出 HTTP POST 请求后尝试从 Web 服务应用程序检索错误数据。我想接收包括 errors 根在内的数据。

在服务应用程序控制器中,我

format.json {
  render :json => @account.errors, :status => 202
}

返回了返回数据,例如,

{\"base\":\"Invalid submitting\",\"name\":\"To short\"}

我想接收这样的返回数据

# Note 'errors'
"{\"errors\":{\"base\":\"Invalid submitting\",\"name\":\"To short\"}"}

我怎样才能做到这一点?


解决方案是这样做

render :json => '{"errors":' + @account.errors.to_json + '}'

,但我不认为这是正确\正确的方法。 RoR 当然有一些功能可以做得更好......

I am using Ruby on Rails 3 and I am trying to retrieve error data from a web service application after making to that an HTTP POST request. I would like to receive that data including the errors root.

In a service app controller I have

format.json {
  render :json => @account.errors, :status => 202
}

The return data returned, for example, is

{\"base\":\"Invalid submitting\",\"name\":\"To short\"}

I would like to receive back data like this

# Note 'errors'
"{\"errors\":{\"base\":\"Invalid submitting\",\"name\":\"To short\"}"}

How can I make that?


A solution is to make this

render :json => '{"errors":' + @account.errors.to_json + '}'

but I don't think it is the right\correct way. RoR certainly has some features to do that better...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如歌彻婉言 2024-10-27 18:17:14

您应该能够构造一个等效的哈希,然后使用它:

error_hash = { 'errors' => @account.errors.to_h }

render(:json => error_hash, :status => 302)

You should be able to construct an equivalent hash and then use that:

error_hash = { 'errors' => @account.errors.to_h }

render(:json => error_hash, :status => 302)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文