huaisianhuang 3 years ago
parent
commit
f01d22988a

+ 8 - 6
step_question/apis/main.py

@@ -10,6 +10,8 @@ import io
 from starlette.responses import RedirectResponse
 import codecs
 import random
+from starlette.status import HTTP_302_FOUND,HTTP_303_SEE_OTHER
+
 app = FastAPI()
 app.add_middleware(
     CORSMiddleware,
@@ -28,7 +30,7 @@ def get_db():
 
 
 
-@app.post("/step_questions/submit", response_class=HTMLResponse)
+@app.post("/step_questions/submit", response_class=RedirectResponse)
 async def submit(request: Request):
     form_data = await request.form()
 #    form_data = request.form()
@@ -48,11 +50,11 @@ async def submit(request: Request):
 #    lines=fr.read()
 #    fr.close()
 #    response = RedirectResponse(url='/a1/index_complete.html')
-    lines="""<html><body>
-    <script>  window.location.replace("/a1/index_complete.html?par={0}");   </script>
-    </body></html>"""
-    return HTMLResponse(content=lines.format(str(random.randint(100000,999999))), status_code=200)
-
+#    lines="""<html><body onload="document.location.replace( '/a1/index_complete.html?par={0}');">
+#    </body></html>"""
+#    return RedirectResponse(url='/a1/index_complete.html')
+#    return HTMLResponse(content=lines.format(str(random.randint(100000,999999))), status_code=200)
+    return RedirectResponse(url="/a1/index_complete.html", status_code=HTTP_302_FOUND)
 #    return result
 
 

+ 2 - 2
step_question/apis/static/index2.html

@@ -27,8 +27,8 @@
     <span style="text-align: center;display: block; margin-bottom: 20px;">裝修市調</span>
     <span style="text-align: center;display: block; font-weight: 700;">送五萬元裝潢折抵券</span>
   </div> -->
-<iframe name="dummyframe" id="dummyframe" style="display: none;"></iframe>
-<form action="/step_questions/submit" method="post" id="msform" target="dummyframe">
+<!--<iframe name="dummyframe" id="dummyframe" style="display: none;"></iframe> -->
+<form action="/step_questions/submit" method="post" id="msform">
   <div class="notice_card">
     您好,我們是幸福空間,想要進行裝修市場調查。只要填寫完畢就送您 City Cafe 或 Cama 咖啡乙杯及裝修折價卷五萬元!
     贈送方式將以LINE寄送數位條碼,可直接至全省 City Cafe 或 Cama 門市兌換,為確保兌換權益,請務必填寫真實資訊,感謝您的配合。

+ 1 - 1
step_question/apis/static/script.js

@@ -110,7 +110,7 @@ $("input[name=submit]").click(function(){
 });
 
 function showThankyou() {
-	document.location = 'index_complete.html';
+	document.location = '/a1/index_complete.html';
 }
 
 $('.btn-exit').click(function() {