|
@@ -42,10 +42,11 @@ async def submit(request: Request):
|
|
|
}
|
|
|
print(result)
|
|
|
get_db().insert(result)
|
|
|
- fr=codecs.open('static/index_complete.html','r','utf-8')
|
|
|
- lines=fr.read()
|
|
|
- fr.close()
|
|
|
+# fr=codecs.open('static/index_complete.html','r','utf-8')
|
|
|
+# lines=fr.read()
|
|
|
+# fr.close()
|
|
|
# response = RedirectResponse(url='/a1/index_complete.html')
|
|
|
+ lines='<html><body><script> window.location.href = "/a1/index_complete.html"; </script>'
|
|
|
return HTMLResponse(content=lines, status_code=200)
|
|
|
|
|
|
# return result
|