首页上一页 1 下一页尾页 1 条记录 1/1页
求助:为什么render_template不能跳转
发表在Python图书答疑
2022-04-25
《Python Web开发手册》第5章 Flask 的请求与响应
是否精华
是
否
版块置顶:
是
否
刚刚开始学习Flask,现在有个问题请教一下:
@app.route(’/’) def index(): if session.get(‘id’): return render_template(‘index.html’) else: return render_template(‘login.html’)
上面代码,只有把return中的语句改成像书中的字符串才能正常显示结果,直接用render_template跳转就会提示下面的错误:
Method Not Allowed
The method is not allowed for the requested URL.
请问各位大神是怎么回事?
我想实现能跳转到相关网页,应该怎么做?
这里先拜谢了!