ruby create CSV
CSV.open("file.csv", "a+") do |csv|
csv << ["cow", "3","2500"]
end
ruby create CSV
CSV.open("file.csv", "a+") do |csv|
csv << ["cow", "3","2500"]
end
ruby on rails csv import
// Model
require 'csv'
def self.import(file)
CSV.foreach(file.path, headers: true) do |row|
to_hash = row.to_hash
// Deal with to_hash header and data. Example Create
user = create(
name: to_hash['name'],
email: to_hash['email'],
lastname: to_hash['lastname']
)
end
end
// Controller
def import
Model.import(params[:file])
end
// View
= form_tag route_path, multipart: true, remote: true do
= file_field_tag :file,
= button_tag 'Import'
generate csv ruby
require 'csv'
csv_string = CSV.generate do |csv|
csv << ["row", "of", "CSV", "data"]
csv << ["another", "row"]
# ...
end
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us