1 2 3 4 5 6 7 8
def new @post = Post.new respond_to do |format| format.html # new.html.erb format.json { render json: @post } end end