-1

我想以updated_at另一种格式返回属性的日期时间,但是,在一个集合中。

如果它是一个单一的对象,我会做类似的事情

object @person
  attributes :name, :phone
  node(:updated_at){|person|(person.created_on.strftime(%d,%m,%Y)}
end

但是,我怎样才能在人员集合中做到这一点?

提前致谢。

4

1 回答 1

1

您显示的 rabl 文件是您的people/show.json.rabl,您可以声明people/index.json.rabl

collection @people
extends "people/show"

这可能会解决你的问题。

于 2013-04-16T03:53:45.820 回答