這是我的目錄結構
在home.py裡代碼為:
from flask import Blueprint,session,Flask,request,redirect,url_for,render_template,flash
home_view = Blueprint('home', __name__)
@home_view.route('/',methods=['GET','POST'])
def homep():
return render_template('login.html')
這個是login.html的代碼,目前還沒什麼東東.
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
login page
</body>
</html>
下面是錯誤提示:
The requested URL was not found on the server.
為什麼會找不到url呢?請各位老師指點一下,謝謝.
你的請求url格式是否正確。