在 Ruby on Rails 中,如何渲染 JSON?

发布于 2024-09-11 16:28:08 字数 388 浏览 4 评论 0原文

我尝试了以下方法来响应 AJAX 并且它有效(在 HAML 中):

  - response.content_type = "application/json"
  = render :text => array_data.to_json

  - response.content_type = "application/json"
  = render :json => array_data.to_json

不起作用。我想我可以使用

  = render :text => array_data.to_json

而不是顶部的前两行?

I tried the following to respond to AJAX and it works (in HAML):

  - response.content_type = "application/json"
  = render :text => array_data.to_json

but

  - response.content_type = "application/json"
  = render :json => array_data.to_json

doesn't work. I thought I could use

  = render :text => array_data.to_json

instead of the first 2 lines at the top?

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

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

发布评论

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

评论(1

梦行七里 2024-09-18 16:28:08
= render :json => @object 

(你不需要使用 .to_json 方法)

= render :json => @object 

(u don't need to use .to_json method)

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