7
spreadsheet gem沒有正確記錄,所以我不能理解如何使用電子表格寶石編寫超鏈接。誰能告訴我?如何在Ruby中使用電子表格gem編寫超鏈接?
spreadsheet gem沒有正確記錄,所以我不能理解如何使用電子表格寶石編寫超鏈接。誰能告訴我?如何在Ruby中使用電子表格gem編寫超鏈接?
該腳本將在第一個單元格
require 'rubygems'
require 'spreadsheet'
book = Spreadsheet::Workbook.new
sheet1 = book.create_worksheet
sheet1[0,0] = Spreadsheet::Link.new 'www.google.com', 'link text'
book.write '/tmp/spreadsheet_with_link.xls'
創建帶有鏈接的電子表格根據該指南,你必須寫一個新的文件名:https://github.com/zdavatz/spreadsheet/blob/master/GUIDE.md
但是當我嘗試再次寫入相同的文件,以前寫入的數據不存在。 – 2011-12-14 10:13:22