我想限制用 rabl 呈现的 JSON 响应的子节点数
collection @vehicles
attributes :name
child(:positions) do
attributes :lat, :lon
end
一个 Vehicle 有多个位置,一个位置属于一个车辆。现在我只想输出 JSON 中的最后一个位置。
我会很感激任何想法。
我想限制用 rabl 呈现的 JSON 响应的子节点数
collection @vehicles
attributes :name
child(:positions) do
attributes :lat, :lon
end
一个 Vehicle 有多个位置,一个位置属于一个车辆。现在我只想输出 JSON 中的最后一个位置。
我会很感激任何想法。