我正在尝试做这样的事情:
cache "api/v1/cars_index/#{I18n.locale}/car/#{car.cache_key}" do
attributes :id, :brand, :model_name, :fuel, :km, :year, :price
node(:color) { |car| car.color.present? ? car.color : '' }
end
我正在尝试做这样的事情:
cache "api/v1/cars_index/#{I18n.locale}/car/#{car.cache_key}" do
attributes :id, :brand, :model_name, :fuel, :km, :year, :price
node(:color) { |car| car.color.present? ? car.color : '' }
end
对于那些通过搜索或谷歌找到这个问题的人。
Niels 在 Github 上开始了一个问题,可以在这里找到。
一位开发人员为此创建了一个很好的解决方案,该解决方案自 v0.6.2 以来已合并到 rabl 中。