如何根据访问的最后一页创建警报?

时间:2019-05-06 02:50:38

标签: python-3.x flask jinja2

我正在尝试模仿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("/")

1 个答案:

答案 0 :(得分:2)

我真的不知道警报的外观,但听起来您可能正在寻找order_by('order')。该文档可用here

同样使用文档中提供的示例,“ / buy”的处理程序应类似于下面的flash

buy()