在 Rails 3 中翻译 JSON

发布于 2024-11-26 23:55:32 字数 318 浏览 0 评论 0原文

我目前正在控制器中执行此操作:

def index
  @orders = Order.all
  respond_to do |format| {
    format.html
    format.js { render json: @orders.as_json()
  }
end

我有一个订单状态字段。该字段的值是英语的,需要翻译成荷兰语。问题是,as_json 调用不会自动将数据翻译为荷兰语。 YML 文件以及当前和默认区域设置都工作正常。 (调用 I18n.t 可以,但是如何与 as_json() 一起使用?)

谢谢!

I'm currently doing this in a controller:

def index
  @orders = Order.all
  respond_to do |format| {
    format.html
    format.js { render json: @orders.as_json()
  }
end

I have a order state field. The values of this field are in English and need to be translated to Dutch. Problem is, the as_json call doesn't automatically translate the data to Dutch. The YML file and current and default locale all are working correctly. ( calling I18n.t works, but how does this work with as_json() ? )

Thanks!

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

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

发布评论

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

评论(1

故事还在继续 2024-12-03 23:55:32

您可以在模型中重写 as_json 并从该方法调用 i18n。

You can override as_json in your model and call i18n from that method.

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