|
@@ -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
|
|
|
|
|
|
|