SP/web2py/applications/examples/controllers/ajax_examples.py

22 lines
390 B
Python
Raw Normal View History

2018-10-25 15:33:07 +00:00
def index():
return dict()
def data():
if not session.m:
session.m = []
if request.vars.q:
if len(session.m) == 10:
del(session.m[0])
session.m.append(request.vars.q)
return TABLE(*[TR(v) for v in sorted(session.m)]).xml()
def flash():
response.flash = 'this text should appear!'
return dict()
def fade():
return dict()