0

我通过以下方式发回一个 json 对象:

respond_with @authors, include: :posts

我需要限制posts. 我试过:

respond_with @authors, include: :posts, limit: 10

但它不起作用。

4

1 回答 1

2

我在这里要做的是创建一个关系latest_posts

class Author
  has_many :latest_posts, -> { limit(10) }, class_name: Post
end

# usage

respond_with @authors, include: :latest_posts
于 2013-08-29T01:37:05.153 回答