在此处输入图像描述
在本地服务器上,flask web应用运行良好,但在live服务器上,它不工作,但当我直接返回模板而不执行任何操作时,它也在live服务器上工作。例子
@app.route('/')
def index():
if 'email' in session:
status = "logout"
return render_template('index.html', status=status)
else:
status = "login"
return render_template('index.html', status=status)
上面的代码在live服务器上不起作用,但下面的代码在live服务器上运行良好。
@app.route('/')
def index():
return render_template('index.html', status=status)
暂无答案!
目前还没有任何答案,快来回答吧!