python flask不能正常跳转

写了个简单的页面跳转,提示:"Theserverencounteredaninternalerrorandwasunabletocompleteyourrequest.E... 写了个简单的页面跳转,提示:"The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application."
在flaskr.py的代码:
from flask import Flask,render_template,redirect,abort,request,flash
app = Flask(__name__)
app.config.from_object(__name__)

@app.route('/')
def home():
return render_template('home.html')

@app.route('/share',methods= ['GET','POST'])
def share():
if request.method == "POST":
name = request.form['title']
content = request.form['content']
return render_template("add.html")
if __name__ == '__main__':
app.run()

home.html代码:
<% block body %>
welcome
<% endblock %>
为什么运行后有错误提示呢?请问该如何修改,非常感谢.
谢谢各位老师,原来是我的HTML文件没有放在templates文件夹下,flask默认是去这个文件夹找的。
展开
 我来答
shayatou10
2015-07-03 · TA获得超过164个赞
知道小有建树答主
回答量:116
采纳率:100%
帮助的人:59.5万
展开全部
你重启下你的服务,不然的话就要在app.run(debug=True)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
日TimE寸
2015-07-04 · TA获得超过9568个赞
知道大有可为答主
回答量:1358
采纳率:83%
帮助的人:465万
展开全部

运行为调试模式

app.run(debug=True)

然后贴一下具体错误提示的内容

本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式