bottle flash2
1.0.0
ปลั๊กอินแฟลชสำหรับขวด
(Bottle-Flash2 เป็นส้อมขวดแฟลช)
คุณสามารถติดตั้ง bottle-flash2 โดยใช้ PIP
pip install bottle-flash2
ฉันต้องการเรียกใช้ "ขวดแฟลช" ในสภาพแวดล้อมของฉัน
Python 3.5.1
Bottle v0.12.9
ดูเหมือนว่าโครงการนี้จะไม่ได้รับการดูแล
ดังนั้นฉันจึงแยกมัน
โปรดดูไดเรกทอรีตัวอย่างง่ายๆ
ตัวอย่างของ Bottle-Flash2 พร้อมเครื่องยนต์ SimpleTemplate สามารถพบได้ที่นี่
และ
from bottle import Bottle , post , jinja2_template as template
from bottle_flash2 import FlashPlugin
# Flash Setup
app = Bottle ()
COOKIE_SECRET = 'super_secret_string'
app . install ( FlashPlugin ( secret = [ COOKIE_SECRET ]))
@ post ( '/flash_sample_done' )
def flash_sample ():
app . flash ( "flash message is here" )
# flash mesage is stored in list
# Therefore, it is possible to store a multiple messages.
app . flash ( "flash message 1" )
app . flash ( "flash message 2" )
return template ( 'index.html' , app = app ) {% set messages = app.get_flashed_messages() %}
{% if messages %}
< div id =" flash_messages " >
< ul >
{% for m in messages %}
< li > {{ m[0] }} </ li >
{% endfor %}
</ ul >
</ div >
{% endif %} version 0.12.9 or above later.
Latest Version -> '0.13-dev'
มิกซ์