How do I make an RSS/Atom feed in Rails 3?

后端 未结 2 884
我在风中等你
我在风中等你 2020-12-22 17:56

I\'m pretty new to Rails 3, and I\'m trying to make an RSS/Atom feed. I know about auto_discovery_link_tag, but what is the associated controller/action supposed to look lik

2条回答
  •  Happy的楠姐
    2020-12-22 18:31

    Using the auto_discovery_link_tag:

    In the controller:

    respond_to do |format|
      format.html
      format.atom {render action: 'index', layout: false}
    end
    

提交回复
热议问题