如何仅选择 to_json / to_xml 中关联对象的一个​​元素

发布于 2024-09-11 23:35:04 字数 328 浏览 1 评论 0原文

我有以下问题。我的应用程序(api 的原型)应该能够对参数(如语言)做出反应。 我已经能够通过以 JSON 形式发送完整对象(包含关联对象)来响应请求。但现在我想通过参数选择关联的对象。 我的代码:

object.to_json(include => {
   :texts_in_diff_languages => {
     #here i should be able to select only languages equal to a given parameter (params[:language])
   }
})

你有什么想法吗?谢谢!

I have the following problem. My App (a prototype of an api) should be able to react on params (like language).
I'm already able to respond to an request by sending an entierly object (with associated objects included) as JSON. But now i want to select the associated objects by parameter.
my code:

object.to_json(include => {
   :texts_in_diff_languages => {
     #here i should be able to select only languages equal to a given parameter (params[:language])
   }
})

Do you have any idea? Thanks!

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

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

发布评论

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

评论(1

妄断弥空 2024-09-18 23:35:04

好吧,我尝试用另一种方式解释它:
我有三张桌子,一张称为书籍,一张称为文本,一张称为第三语言。书上有很多文本,而一篇文本有一种语言。
现在我想在 BooksController 中编写一个方法,它返回一个仅包含特定语言的 book:title、book:text:content 的 JSON。
我想从参数(params[:language_id])获取这种语言。
现在你明白了吗?

我的代码:(选择一本书并包含所有语言的所有文本)

render :json => @book.to_json(
 :only => [:title],
 :include => { 
  :texts => {
   :include => {
    :languages
   }
  }
 })

Ok i try to explain it another way round:
I have three tables, one called books, called texts and the third languages. On Book has_many texts and one text has one language.
Now I want to write a method in the BooksController which returns a JSON containing only the book:title, book:text:content of a specific language.
This language i want to get from a parameter (params[:language_id]).
Do you understand it now?

my code: (selects a book and includes all its texts for all languages)

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