前提・実現したいこと
HTML上でボタンを選択すると作成したテキストファイルをダウンロードする機能を作成しています。
原因がわかる方教えて頂けますでしょうか。
よろしくお願いいたします。
発生している問題・エラーメッセージ
ネット情報を参考に作成しているのですがダウンロードが行われません。
該当のソースコード
HTML
1<form action="" method="get"> 2 <button class="btn btn-primary mt-1" type="submit" name="process">処 理</button> 3 </form>
views
1・・・前処理・・・ 2 3def downloadtest(readfile): 4 with open(readfile, "r") as f: 5 lines = f.readlines() 6 for line in lines: 7 print(line, end="") 8 response = HttpResponse(f.read(),content_type="text/plain") 9 response["Content-Disposition"] ='attachment; filename=readfile' 10 return response
試したこと
lines = f.readlines()
for line in lines:
print(line, end="")
上記でファイルが存在しており読めることも確認しています。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/01/03 14:29