rails 4中的未知格式

时间:2014-05-11 08:11:03

标签: ruby-on-rails-4

我正在使用rails 4.但是我的格式错误未知。你们有什么帮助吗? 这是我的控制器:

class EntriesController < ApplicationController
  respond_to :json

  def index
    respond_with Entry.all
  end
end

enter image description here

3 个答案:

答案 0 :(得分:29)

将此添加到您的路线配置

resources :entries, defaults: { format: 'json' }

答案 1 :(得分:9)

def index
  respond_to do |format|

    @entry = Entry.all

    format.html 
    format.json { render json: @entry }

  end
end

希望它会帮助你

答案 2 :(得分:-2)

:html添加到respond_torespond_to :html, :json)或完全删除respond_to来电。