お世話になります。初心者で稚拙な質問となります。
response['Content-Disposition'] = 'attachment; filename="sample.txt"'
ファイルをダウンロードさせる処理を実装しているのですが
以下のコードのようにfilenameの部分を変数にすると
sample_variable = "sample.txt" response['Content-Disposition'] = 'attachment; filename=sample_variable'
変数として認識しません。
具体的にはsample_variable という変数名がファイル名として認識されsample_variableという名前のファイルがダウンロードしてしまいます。
どのようにsample_variableを書けば変数指定として認識し、sample.txtがダウンロードできるのでしょうか?
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー