Ruby on Rails
Importera hela CSV-filer från en specifik mapp
Sök…
Introduktion
I det här exemplet kan vi säga att vi har många produkt-CSV-filer i en mapp. Varje CSV-fil måste ladda upp vår databas från vår konsol skriva ett kommando. Kör följande kommando i ett nytt eller befintligt projekt för att skapa den här modellen.
Laddar upp CSV från konsolkommando
Terminalkommandon:
rails g model Product name:string quantity:integer price:decimal{12,2}
rake db:migrate
Sen skapar styrenhet.
Terminalkommandon:
rails g controller Products
Controller Code:
class HistoriesController < ApplicationController
def create
file = Dir.glob("#{Rails.root}/public/products/**/*.csv") #=> This folder directory where read the CSV files
file.each do |file|
Product.import(file)
end
end
end
Modell:
class Product< ApplicationRecord
def self.import(file)
CSV.foreach(file.path, headers: true) do |row|
Product.create! row.to_hash
end
end
end
routes.rb
resources :products
app / config / application.rb
require 'csv'
Nu öppnar din utveckling console
och run
=> ProductsController.new.create #=> Uploads your whole CSV files from your folder directory
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow