我正在开发一个 ruby on rails 应用程序。我需要将页面上显示的数据以 .text 文件格式导出,如下所示:
文件的格式是
# category name
## question
answer
## question
answer
# another category
## question
answer
...
在索引视图(我要导出的内容)中,我有:
<% @categories.each do |category| %>
<h4><%= category.name %> Category</h4>
<ol>
<% category.questions.each do |question| %>
<li><%= question.content %></li>
<ul>
<% question.answers.each do |answer| %>
<li><%= answer.content %></li>
<% end %>
</ul>
<% end %>
</ol>
<% end %>
我怎样才能做到这一点?