我正在尝试模仿https://finance.cs50.net/的“仪表板”(您登录后),如果您从/ buy重定向到那里,它会显示“已购买”警报,但如果结束则不会显示警报否则在那里。
我正在使用Flask,jinja2,python和HTML。提供的地址为(“ /”),该地址可以与return redirect
一起使用,但不能与return render_template
一起使用。我尝试使用return redirect
传递标志,但是我的计算机不喜欢这样。您一直都知道UserId,但是没有跟踪导航(即没有cookie)。我能理解的简单答案胜于我无法理解的聪明答案。
# from application.py, at the end of the 'buy' function
# flag says local to 'buy' so this does not help me
flag = True
return redirect("/")
## also tried, but computer got angry
return render_template("/")
答案 0 :(得分:2)