码迷,mamicode.com
首页 > Web开发 > 详细

Web2py也有意思的

时间:2014-06-09 18:06:43      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

多学学,以后可以方便的自己写代码了。

对于各种WEB框架,这也是打一个基础的时候。

相信学入门了,对PHP的,JAVA的WEB框架,都是能理解更深入的。

bubuko.com,布布扣

bubuko.com,布布扣
def index():
    """
    example action using the internationalization operator T and flash
    rendered by views/default/index.html or views/generic.html

    if you need a simple wiki simply replace the two lines below with:
    return auth.wiki()
    """
    if not session.counter:
        session.counter = 1
    else:
        session.counter += 1
    #response.flash = T("Welcome to web2py!")
    return dict(message="Hello, Sky from MyApp!", counter=session.counter)

def first():
    form = SQLFORM.factory(Field(visitor_name, requires=IS_NOT_EMPTY()))
    if form.process().accepted:
        session.visitor_name = form.vars.visitor_name
        redirect(URL(second))
    return dict(form=form)

def second():
    if not request.function==first and not session.visitor_name:
        redirect(URL(first))
    return dict()
bubuko.com,布布扣

 

Web2py也有意思的,布布扣,bubuko.com

Web2py也有意思的

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/aguncn/p/3777619.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!