我开始使用Rabl并尝试包含父属性,但与孩子处于同一级别。
这是我到目前为止所拥有的......
class Usertag < ActiveRecord::Base
belongs_to :tag
attr_accessible :user_id, :tag_id
end
我的index.json.rabl
object @usertag
attributes :id
child :tag do
attributes :name
end
可生产
[{"usertag":{"id":1,"tag":{"name":"Dolor et non."}}},
如何在模板中展平子节点以使其生成
[{"usertag":{"id":1,"name":"Dolor et non."
谢谢!