将许多数组放在XML中

时间:2011-04-26 19:19:58

标签: ruby-on-rails xml

我正在使用

def index
  @services = Service.all

  respond_to do |format|
    format.html # index.html.erb
    format.xml  { render :xml => @services }
  end
end

使用所有服务呈现XML。

将另一个数组添加到xml的正确语法是什么?

我的意思是添加例如

@activities = Activity.all

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用

format.xml {render :xml => {:services => @services, :activities => @activities}}