|
@@ -28,9 +28,9 @@ def get_db():
|
|
|
|
|
|
|
|
|
|
@app.post("/step_questions/submit")
|
|
@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 = {
|
|
result = {
|
|
'sex': form_data.get('q1'),
|
|
'sex': form_data.get('q1'),
|
|
'phone': form_data.get('q2'),
|
|
'phone': form_data.get('q2'),
|
|
@@ -47,7 +47,9 @@ def submit(request: Request):
|
|
# lines=fr.read()
|
|
# lines=fr.read()
|
|
# fr.close()
|
|
# fr.close()
|
|
# response = RedirectResponse(url='/a1/index_complete.html')
|
|
# 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 HTMLResponse(content=lines, status_code=200)
|
|
|
|
|
|
# return result
|
|
# return result
|