gpt4 book ai didi

python - Django 下载名称为变量的 csv 文件

转载 作者:行者123 更新时间:2023-12-01 02:53:48 29 4
gpt4 key购买 nike

我正在尝试编写一些代码,以允许用户在按下下载按钮时下载 .csv 文件,其中包含基于搜索的结果。我想在 csv 文件的默认名称中包含日期,但无法使其工作。 views.py中相关代码为:

now = datetime.datetime.now()
date = str(now.year)+'-'+str(now.month)+'-'+str(now.day)

response = HttpResponse(content_type='csv')
response['Content-Disposition'] = 'attachment; filename="results"+str(date)+".csv"'

这将返回默认文件名“results_+str(date)+_.csv”。

最佳答案

你搞乱了你的'":

response['Content-Disposition'] = 'attachment; filename="results'+str(date)+'.csv"'

这会起作用。不过我建议这样做:

response['Content-Disposition'] = 'attachment; filename="results{}.csv"'.format(str(date))

还可以考虑使用strftime .

关于python - Django 下载名称为变量的 csv 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44450680/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com