GithubHelp home page GithubHelp logo

Comments (3)

davidism avatar davidism commented on May 2, 2024

What does "off the rails" mean? Did an error happen? Be sure to provide a minimal reproducible example and the full traceback when reporting an issue.

from flask.

inducer avatar inducer commented on May 2, 2024

Sure, fair:

from flask import Flask, flash, get_flashed_messages

app = Flask(__name__)
app.secret_key = "abcdef"

@app.route("/")
def hello_world():
    get_flashed_messages()
    flash("hi")
    assert get_flashed_messages()

Run with

flask --app=flask_repro run 

go to http://127.0.0.1:5000/ and see

Traceback (most recent call last):
  File "/home/andreas/src/env-3.12/lib/python3.12/site-packages/flask/app.py", line 1455, in wsgi_app
    response = self.full_dispatch_request()
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/andreas/src/env-3.12/lib/python3.12/site-packages/flask/app.py", line 869, in full_dispatch_request
    rv = self.handle_user_exception(e)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/andreas/src/env-3.12/lib/python3.12/site-packages/flask/app.py", line 867, in full_dispatch_request
    rv = self.dispatch_request()
         ^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/andreas/src/env-3.12/lib/python3.12/site-packages/flask/app.py", line 852, in dispatch_request
    return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/andreas/tmp/flask_repro.py", line 10, in hello_world
    assert get_flashed_messages()
AssertionError

What does "off the rails" mean?

"Off the rails" means that flashes is not None there, and so the code does not look in the session (assuming that's what it's supposed to do).

from flask.

davidism avatar davidism commented on May 2, 2024

This is documented: https://flask.palletsprojects.com/en/3.0.x/api/#flask.get_flashed_messages

Further calls in the same request to the function will return the same messages.

The intended use is documented as well: https://flask.palletsprojects.com/en/3.0.x/patterns/flashing/

The flashing system basically makes it possible to record a message at the end of a request and access it next request and only next request.

You're intended to put messages into one request, then get them out in the next request. Getting them out, putting them in, and getting them out again in the same request is not the intended use case.

from flask.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.