0
我想下載我用docutils完成的所有文檔到一些格式(html,pdf等)有沒有辦法輕鬆做到這一點?如何用django下載docutils頁面?
我想下載我用docutils完成的所有文檔到一些格式(html,pdf等)有沒有辦法輕鬆做到這一點?如何用django下載docutils頁面?
是
下面是一個例子:
response = HttpResponse(content_type="application/ms-excel")
response['Content-Disposition'] = 'attachment; filename=excel.xls'
將提供Excel格式的附件名爲excel.xls爲您下載