I want to decide numbers of attributes to output in my controller.
But I have no idea have to do it?
controller.rb
respond_to do |format|
if fields
# less attributes : only a,c
elsif xxx
# default attributes
else
# all attributes : a,c,b,d,...
end
end
serializer.rb
class WeatherLogSerializer < ActiveModel::Serializer
attributes :id, :temperature
def temperature
"Celsius: #{object.air_temperature.to_f}"
end
end
You can create different serializers and
respond_with
orrender
with a custom serializer like so: