2013年12月30日 星期一

[Django] Export CSV file ( 匯出CSV檔案 )

凌晨1:20
Export data to a CSV file with Django 前言:單純因為會用到,所以就剛好寫到這個功能 想說,以後可能在別的公司or自己的server會用到,就順便整理一份範例。 Example Code:https://gist.github.com/kilfu0701/7332112 # in some views.py, to serve a csv file in Django. # -*- coding: utf-8 -*- import csv from django.http import HttpResponse def donwload_csv(request): # change export csv formatting by request parameter. ( url?encode=utf-8 ) encode = request.GET.get('encode', 'big5') response =...
1234567Next >LastPage 1 of 7