我需要的结构是:
[{model}, {model}, {other model}, ...] # for jquery ui autocomplete
如何使用 JBuilder 构建这个结构?对于渲染数组,他们有数组!方法,它接受一个参数 - 集合。但我有不止一个收藏。为什么这么复杂?
我需要的结构是:
[{model}, {model}, {other model}, ...] # for jquery ui autocomplete
如何使用 JBuilder 构建这个结构?对于渲染数组,他们有数组!方法,它接受一个参数 - 集合。但我有不止一个收藏。为什么这么复杂?
我用这个方法child!
解决了这个问题。
json.models do
@model1s.each do |m1|
json.child!{|json| json.partial! m1,as :Model1}
end
@model2s.each do |m2|
json.child!{|json| json.partial! m2,as :Model2}
end
end
从这里获得更多