質問編集履歴
1
コード追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,3 +11,25 @@
|
|
11
11
|
PWAからSafariを開く方法、もしくは他の対応方法がありましたら教えて頂ければ幸いです。
|
12
12
|
|
13
13
|
よろしくお願いします。
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
```Python
|
18
|
+
|
19
|
+
@app.route('/result_pdf',methods=["POST","GET"])
|
20
|
+
|
21
|
+
@auth.login_required
|
22
|
+
|
23
|
+
def PDFPage():
|
24
|
+
|
25
|
+
//処理
|
26
|
+
|
27
|
+
response.headers['Content-Type'] = 'application/pdf'
|
28
|
+
|
29
|
+
response.headers['Content-Disposition'] = 'inline; filename=%s.pdf' % 'yourfilename'
|
30
|
+
|
31
|
+
return response
|
32
|
+
|
33
|
+
```
|
34
|
+
|
35
|
+
このresponseでPDFを返しているのですが、これをSafariで開きたいです。
|