使用ActiveRecord似乎很容易:
config.active_record.include_root_in_json = true
但我找不到合适的Mongoid文档
答案 0 :(得分:4)
以下是您要查找的文档:
http://mongoid.org/docs/installation/configuration.html
根据config / mongoid.yml中的文档,您只需设置:
include_root_in_json: true
欢呼声
答案 1 :(得分:0)
# wrap scaffolded template with set!
# people/index.json
json.set! :people do
json.array!(@people) do |p|
json.extract! p, :name, :age
end
end #=> returns {"people" : [ "name" : "Jane", "age" : 30 ] }