20

当用户将 JSON POST 到 Rails 3 应用程序中的 /update/ 操作时,最好的响应方式是什么?

我只想发送一个带有 200 代码的空 JSON 响应,例如

head :no_content

或者

render :nothing => true, :status => 204

(来自如何在 Rails 控制器中返回 HTTP 204 的示例)。

通常我一直在这样做:

render :json => {}

或者

render :json => 'ok'

是否有首选或更多Rails-y方式?

4

1 回答 1

29

我的 Rails 3 应用程序使用这样的代码进行更新。html 和 xml 的代码是由 Rails 自动生成的,所以我只是使用相同的格式添加到 JSON 渲染器中。

respond_to do |format|
  if @product.update_attributes(params[:product])
    format.html { redirect_to(@product, :notice => 'Product was successfully updated.') }
    format.xml  { head :ok }
    format.json { head :ok }
  else
    format.html { render :action => "edit" }
    format.xml  { render :xml => @product.errors, :status => :unprocessable_entity }
    format.json { render :json => @product.errors, :status => :unprocessable_entity }
  end
end

完美运行,这才是最重要的。

于 2012-11-28T18:39:33.533 回答