但GAE、Django並沒有直接將pyExcelerator匯出為Excel的方法。我的思路是先用把資料匯入到Workbook和Worksheet中,如果存為檔案可以直接調用Workbook的save方法,但GAE不支援本地檔案操作,即使圖片也只能存放在DataStore中,但我們可以類似於返回圖片的方法,直接將Excel的二進位流返回給瀏覽器。這就需要修改一下Workbook的代碼,加入返回二進位流的方法,我給他取的名字是savestream,在savestream中再次調用CompoundDoc.XlsDoc的savestream方法,也是自己增加的。代碼如下:
Workbook的savestream:
複製代碼 代碼如下:
def savestream(self):
import CompoundDoc
doc = CompoundDoc.XlsDoc()
return doc.savestream(self.get_biff_data())
CompoundDoc.XlsDoc的savestream方法:
複製代碼 代碼如下:
def savestream(self, stream):
# 1. Align stream on 0x1000 boundary (and therefore on sector boundary)
padding = '\x00' * (0x1000 - (len(stream) % 0x1000))
self.book_stream_len = len(stream) + len(padding)
self.__build_directory()
self.__build_sat()
self.__build_header()
s = ""
s = s + str(self.header)
s = s + str(self.packed_MSAT_1st)
s = s + str(stream)
s = s + str(padding)
s = s + str(self.packed_MSAT_2nd)
s = s + str(self.packed_SAT)
s = s + str(self.dir_stream)
return s
這樣就可以返回Excel檔案的二進位流了,下面就是如何在使用者請求的時候將Excel檔案返回,我借鑒了PHP的實現方法,代碼如下:
複製代碼 代碼如下:
class Main(webapp.RequestHandler):
def get(self):
self.sess = session.Session()
t_values['user_id'] = self.sess['userid']
if self.request.get('export') == 'excel':
wb = Workbook()
ws = wb.add_sheet(u'統計報表')
#表頭
font0 = Font()
font0.bold = True
font0.height = 12*20;
styletitle = XFStyle()
styletitle.font = font0
ws.write(0, 0, u"日期:"+begintime.strftime('%Y-%m-%d') + " - " + endtime.strftime('%Y-%m-%d'), styletitle)
#返回Excel檔案
self.response.headers['Content-Type'] = "application/vnd.ms-execl"
self.response.headers['Content-Disposition'] = str("attachment; filename=%s.xls"%t_values['user_id'])
self.response.headers['Pragma'] = "no-cache"
self.response.headers['Expires'] = "0"
self.response.out.write(wb.savestream())
return
效果可以參見我愛記賬網的excel報表。