程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> leancloud-python用flask框架網頁跳轉失敗

leancloud-python用flask框架網頁跳轉失敗

編輯:編程綜合問答
python用flask框架網頁跳轉失敗

這是我的目錄結構

圖片說明

在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格式是否正確。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved