我是燒瓶和python的新手,我試圖使用渲染模板函數打開一個URL。 404錯誤不斷顯示,而不是模板文件夾中的HTML。Python - 使用燒瓶渲染模板時出現404錯誤
我的文件夾結構如下:
coding folder/
main.py
templates/
----profile.html
我main.py文件中的代碼如下:
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/profile/<name>")
def profile(name):
return render_template("profile.html", name=name)
if __name__ == "__main__":
app.run()
我profile.html文件包含以下代碼:
<!doctype html>
<title>sambit's page</title>
<h3>Wassup {{ name }} </h3>
我一直在撓撓我的頭超過4個小時。請幫忙!!!!
你能說,在404狀態代碼中shell中顯示的是什麼請求嗎? –