Rails 2.3.4中使用YAJL渲染json

发布于 2024-09-19 01:06:25 字数 199 浏览 4 评论 0原文

我想使用 YAJL 渲染 JSON。如果我在控制器中 require 'yajl' 并执行 render :json =>; some_hash,这个会使用YAJL将hash编码成json吗?在调用 render 之前,我应该使用 YAJL 的编码方法将哈希值转换为 JSON 吗?

如果没有,我该如何去做呢?

I want to use YAJL to render JSON. If I require 'yajl' in the controller and perform a render :json => some_hash, will this use YAJL to encode the hash into json? Should I convert the hash to JSON using YAJL's encode method before calling render?

If not, how can I go about doing this?

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

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

发布评论

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

评论(1

ぃ弥猫深巷。 2024-09-26 01:06:45

在environment.rb 末尾使用 require 'yajl/json_gem'

要查看这是否有效,只需将一些日志记录注入 Yajl::Encoder.encode - 只是为了检查。

Use require 'yajl/json_gem' on the end of environment.rb

To see if this works just inject some logging into Yajl::Encoder.encode - just for check.

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