Your Name 3 years ago
parent
commit
152533ba1d
1 changed files with 6 additions and 4 deletions
  1. 6 4
      step_question/apis/main.py

+ 6 - 4
step_question/apis/main.py

@@ -28,9 +28,9 @@ def get_db():
 
 
 @app.post("/step_questions/submit")
-def submit(request: Request):
-#    form_data = await request.form()
-    form_data = request.form()
+async def submit(request: Request):
+    form_data = await request.form()
+#    form_data = request.form()
     result = {
         'sex': form_data.get('q1'),
         'phone': form_data.get('q2'),
@@ -47,7 +47,9 @@ def submit(request: Request):
 #    lines=fr.read()
 #    fr.close()
 #    response = RedirectResponse(url='/a1/index_complete.html')
-    lines='<html><body><script>    window.location.href = "/a1/index_complete.html"; </script></body></html>'
+    lines="""<html><body>
+    <script>    window.location.href = "/a1/index_complete.html"; </script>
+    </body></html>"""
     return HTMLResponse(content=lines, status_code=200)
 
 #    return result