質問編集履歴

2

誤字修正

2021/12/04 06:56

投稿

KaiganBay
KaiganBay

スコア11

test CHANGED
File without changes
test CHANGED
@@ -30,9 +30,13 @@
30
30
 
31
31
  print('Content-Type: application/force-download')
32
32
 
33
+ print('Content-Transfer-Encoding: binary')
34
+
33
35
  print('Content-Length: ' + fSize)
34
36
 
35
37
  print('Content-Disposition: attachment; filename="' + fName + '"')
38
+
39
+ print('X-Download-Options: noopen');
36
40
 
37
41
  print("")
38
42
 

1

プログラムの一部が欠けてました

2021/12/04 06:56

投稿

KaiganBay
KaiganBay

スコア11

test CHANGED
@@ -1 +1 @@
1
- Python利用しての href="ダウンロード"
1
+ Python利用しての<h href= ファイルダウンロード
test CHANGED
@@ -42,6 +42,8 @@
42
42
 
43
43
  data = f.read()
44
44
 
45
+ print(data)
46
+
45
47
  f.close()
46
48
 
47
49
  と作成しHTMLをブラウザで表示し、ダウンロードをクリックし実行しました。