在 Rails 3 中翻译 JSON
我目前正在控制器中执行此操作:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在模型中重写 as_json 并从该方法调用 i18n。
You can override as_json in your model and call i18n from that method.