如何在Flask Python中渲染和重定向到外部URL

时间:2019-12-01 07:36:57

标签: python flask

我正在尝试使用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)

有人对如何实现这一目标有任何想法吗?

1 个答案:

答案 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)