我在让rabl符合jsonapi.org规范方面遇到了很多麻烦。我已经在github上看到了关于这个(https://github.com/nesquena/rabl/wiki/Conforming-to-jsonapi.org-format)的wiki条目,但是我不明白如何在rabl中获得多个根级节点并且仍然可以使用集合。集合上的wiki条目说这应该可行
collection [@post] => :posts
attributes :id, :title
child @post => :links do
node(:author) { @post.author_id }
node(:comments) { @post.comments_ids }
end
对于单根文档,它会这样做,但是当我尝试将meta
或links
添加到jsonapi.org规范中声明的文档根目录时,会附加这些节点到现有的集合节点。这是我的rabl_init.rb
require 'rabl'
Rabl.configure do |config|
config.cache_sources = Rails.env != 'development'
config.include_child_root = false
config.include_json_root = false
end
我希望json看起来像这样:
{
"links": {
"posts.comments": "http://example.com/posts/{posts.id}/comments"
},
"posts": [{
"id": "1",
"title": "Rails is Omakase"
}, {
"id": "2",
"title": "The Parley Letter"
}]
}
Rabl是否能够做到这一点?
答案 0 :(得分:0)
尝试这样的事情:
object false
node(:links) do
{"posts.comments" => "http://example.com/posts/{posts.id}/comments"}
end
child(@posts) do
attributes :id, :title
end