`
kukuqiu001
  • 浏览: 210355 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

ruby on rails 将数据库文件导出为csv文件(使用fastercsv)

阅读更多
上面一篇文章将csv导入到数据库,现在将数据库的数据导出
view层
href="../../contact_manager/csv_export"使用url转向的contact_manager是action,csv_export是action中的方法
<a href="../../contact_manager/csv_export">export csv</a>

控制层
class InformationController < ApplicationController
 require 'faster_csv'
 
 def csv_export
   @informations = CustomerInformation.find(:all)
   
   csv_string = FasterCSV.generate do |csv|
     csv << ["name","email","remark"]
     @informations.each do |u|
       csv << [u.name,u.email,u.remark]
     end
   end
   send_data csv_string,
             :type=>'text/csv; charset=iso-8859-1; header=present',
             :disposition => "attachment; filename=export.csv"
 end
  
end

实体
class CustomerInformation < ActiveRecord::Base
end
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics