forked from orbit-oss/flask
Merge pull request #1851 from prachikhadke/1789-document-flash-limit
Document flash message size limit
This commit is contained in:
commit
5cf261a287
1 changed files with 3 additions and 1 deletions
|
|
@ -9,7 +9,9 @@ application. Flask provides a really simple way to give feedback to a
|
||||||
user with the flashing system. The flashing system basically makes it
|
user with the flashing system. The flashing system basically makes it
|
||||||
possible to record a message at the end of a request and access it next
|
possible to record a message at the end of a request and access it next
|
||||||
request and only next request. This is usually combined with a layout
|
request and only next request. This is usually combined with a layout
|
||||||
template that does this.
|
template that does this. Note that browsers and sometimes web servers enforce
|
||||||
|
a limit on cookie sizes. This means that flashing messages that are too
|
||||||
|
large for session cookies causes message flashing to fail silently.
|
||||||
|
|
||||||
Simple Flashing
|
Simple Flashing
|
||||||
---------------
|
---------------
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue