문제

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?

도움이 되었습니까?

해결책

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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top