Your Name 3 年之前
父節點
當前提交
a083081bb5
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      step_question/apis/main.py

+ 3 - 2
step_question/apis/main.py

@@ -28,8 +28,9 @@ def get_db():
 
 
 
 
 @app.post("/step_questions/submit")
 @app.post("/step_questions/submit")
-async def submit(request: Request):
-    form_data = await request.form()
+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'),