I'm using rails 4. But I am getting unknown format error. Do you guys have any help for me. Here is my controller:
class EntriesController < ApplicationController
respond_to :json
def index
respond_with Entry.all
end
end
I'm using rails 4. But I am getting unknown format error. Do you guys have any help for me. Here is my controller:
class EntriesController < ApplicationController
respond_to :json
def index
respond_with Entry.all
end
end
Add
:html
torespond_to
(respond_to :html, :json
) or remove therespond_to
call altogether.Add this to your routes config
resources :entries, defaults: { format: 'json' }
hope it will help you