1

<response>@model.to_xml</response>追加のresponseモデルを作成せずに、コントローラー アクションの XML 応答をラップする簡単な方法はありますか?

は次のrespond_withようになります。

respond_with(@model, :status => :accepted, :location => nil) do |format|
  format.xml { render :xml => @model.to_xml(:dasherize => false) }
end
4

1 に答える 1

0
respond_with(@model, :status => :accepted, :location => nil) do |format|
  format.xml { 
    render :xml => {:response => @model}.to_xml(:dasherize => false) 
  }
end
于 2013-02-13T12:49:09.613 に答える