ogólnie mega prosty przykład
[code]#controllers/api/v1/regions_controller.rb
class Api::V1::RegionsController < ApiController
respond_to :json
def index
@regions = Region.all
end
end[/code]
#views/api/v1/regions/index.rabl
collection @regions
attributes :id
zwraca
[{}, {}, {}]
i generalnie pytanie brzmi gdzie jest id! już nie mówiąc o reszcie cokolwiek bym nie ustawił w attributes to i tak dostaje {}
Rails 3.2.7
ruby 1.9.3p125
help