How to set file name in response

后端 未结 1 1723
南旧
南旧 2020-12-18 06:15

I know about content-disposition but I read what it uses for email messages. And I want to know how I can set file name with content-type. ps I use Pyramid framework

相关标签:
1条回答
  • 2020-12-18 06:57

    You need to set the filename parameter of the Content-Disposition header like so:

    response.content_disposition = 'attachment; filename="my_filename.txt"'
    
    0 讨论(0)
提交回复
热议问题