1

有没有区别

def create
  @user = User.new(params[:user])
  if @user.save
    redirect_to root_url, :notice => "Signed up!"
  else
    render :new
  end
end

  def create
    @user = User.new(params[:user])

    respond_to do |format|
      if @user.save
        format.html { redirect_to(:users, :notice => 'Registration successfull. Check your email for activation instructions.') }
        format.xml { render :xml => @user, :status => :created, :location => @user }
      else
        format.html { render :action => "new" }
        format.xml { render :xml => @user.errors, :status => :unprocessable_entity }
      end
    end
  end

忽略错误和注意问题,我的主要问题是使用 xml 格式和不使用它之间的区别,他们似乎做了确​​切的事情。

4

1 回答 1

1

使用respond_to与 html 不同的格式使您能够以指定格式获得响应(对 Web 服务有用)。

在那种情况下(用户创建)我不认为它真的有用,但这完全取决于你!

不像你的第一个例子那样使用respond_to只会渲染html。

关于这里的更多信息respond_to

http://apidock.com/rails/ActionController/MimeResponds/InstanceMethods/respond_to

于 2012-05-10T23:46:54.880 回答