我正在尝试使用render_template使用加载微调器将用户重定向到网页,然后使用Python中的flask
将用户重定向到外部URL。
我已经在下面编写了代码,它仅等待3秒钟,然后重定向到youtube.com
。
from flask import Flask, redirect, render_template
from time import sleep
app = Flask(__name__)
@app.route('/')
def redirect_to_url():
render_template('loading_spinner.html')
sleep(3)
return redirect("https://youtube.com")
if __name__ == "__main__":
app.run(debug=True)
有人对如何实现这一目标有任何想法吗?
答案 0 :(得分:1)
您可以在javascript中使用超时。这是样本 loding_spinner.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
Hello
</body>
<script>
function myFunction() {
location.replace("https://youtube.com")
}
setTimeout(function(){ myFunction(); }, 3000);
</script>
</html>
Python代码
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def redirect_to_url():
return render_template('loading_spinner.html')
if __name__ == "__main__":
app.run(debug=True)