1
我試圖使用電子表格的寶石在我的Rails應用程序,但我得到了以下錯誤:Rails的「不能將電子表格::工作簿轉換成String」
can't convert Spreadsheet::Workbook into String
這是我的代碼:
require 'spreadsheet'
def create_spreadsheet_from_array(array)
Spreadsheet.client_encoding = 'UTF-8'
book = Spreadsheet::Workbook.new
...
end
我在做什麼錯?
你看到的不是來自你所提供的代碼的簡短片段中的錯誤。你需要提供更多的代碼。另外,請查看異常中包含的回溯,以幫助查找觸發此事件的代碼行。 – 2011-05-10 14:56:02