Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

ArgumentError (too few arguments): when calling format.json on rails 4.04

When executing

format.json{render json: {}, status: :ok}

in Rails 4.0.4, I get the following error:

ArgumentError (too few arguments):

Although I have another program (with Rails 3.2.13) where the exact same line executes with no problem. am I missing something here?

any gems?

or change in syntax with rails 4?

question from:https://stackoverflow.com/questions/23527011/argumenterror-too-few-arguments-when-calling-format-json-on-rails-4-04

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Mostly you would get the error ArgumentError (too few arguments): on the format when you forget to call this part of code within the block to respond_to method call.

Your code should actually look like

def action_name
  respond_to do |format|  ## Add this
    format.json { render json: {}, status: :ok}
    format.html 
    ## Other format
  end                    ## Add this
end

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...