当前位置: 首页 > 工具软件 > FasterCSV > 使用案例 >

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

李利
2023-12-01
上面一篇文章将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
 类似资料: