excell 가져오기 내보내기
2474 단어 excell
부분 코드:
module FileHandle
extend ActiveSupport::Concern
#Roo::Spreadsheet
module ClassMethods
def import_data(file,current_user)
imports = { failed: []}
messages = {color:"#ff0000"}
unless file.blank?
orig_name = file.original_filename
if ".XLSX" == File.extname(orig_name).upcase
require 'roo'
@students = []
path = file.tempfile.path
workbook = Roo::Spreadsheet.open path
worksheet = workbook.sheet(0)
row_no = 1
worksheet.each_row_streaming(offset: 1, pad_cells: true) do |row|
row_no += 1
next if row[0].blank?
record = {excel_row: row_no, success: true}
self::IMPORT_COLUMNS.each do |c,i|
record[c] = row[i]&.value
end
return_student, message = self.save_from_hash(record, current_user)
@students << return_student
if return_student.blank?
record[:success] = false
record[:message] = message
imports[:failed] << record
end
end
if imports == { failed: [] }
messages[:color] = "#00DD00"
messages[:detail] = " "
end
else
messages[:detail] = " .xlsx 。"
end
else
messages[:detail] = " "
end
[imports,messages]
end
#
def export_data
file = Spreadsheet.open "#{Rails.root}/public/xls/#{self.table_name}.xls"
list = file.worksheet 0
self.all.each_with_index do |r,index|
self::EXPORT_COLUMN.each do |k,v|
k = k.to_s
list[index+1,v] = k.include?('|') ? r.send(k.split('|').first)&.send(k.split('|').last) : r.send(k)
end
end
xls_report = StringIO.new
file.write xls_report
return xls_report.string
end
end
end
소스 참조:
https://github.com/jamst/tool-node/blob/master/excell_to_email
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ajax 제출 json 데이터 반환 파일 흐름 다운로드 excell더 읽 기 ajax 비동기 로 다운로드 파일 을 되 돌 릴 수 없습니다. from 폼 숨 김 영역 을 추가 하 는 방식 으로 이 루어 집 니 다. 또한 js 에서 엑셀 플러그 인 을 직접 호출 하여 파일 을 만 들 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.