我如何在web.py中进行表格反馈

时间:2012-05-10 08:25:28

标签: python forms web.py

我想在html中写表格,比如

form    
    input type.....   
    input type.....    

然后在py:

中写下这个
f = forms.register_form()
if not f.validates():
    return render.register(f)

问题是,如果表单未通过验证,我该如何将信息反馈给用户。 在速度方面有#springbind吗?

1 个答案:

答案 0 :(得分:0)

让我回答一下我的web.py项目的片段:

bookeditform = form.Form(
    form.Textbox('title', form.notnull),
    form.Textbox('author', form.notnull),
    form.Textbox('year', 
        form.Validator('Must be a number', lambda x: not x or int(x) > 0)),
)

# ...

class NewBookHandler:
    def GET(self):
        f = bookeditform()
        return render.bookedit(f, "New book")

    def POST(self):
        f = bookeditform()
        if f.validates():
            newid = db.insert('book', title=f.d.title, 
                              author=f.d.author, year=f.d.year)
            raise web.seeother('/book/%s' % newid)
        else:
            return render.bookedit(f, "New book")

回顾:

  • 在处理程序中,在GET上,只需呈现空表单。
  • POST上,加载表单,然后检查其是否有效。
    • 如果是,请执行所需操作,然后将用户重定向到成功页面。永远不要在POST上呈现任何内容,因为用户可以刷新页面,重新执行相同的操作。
    • 如果没有,请重新呈现表单(它将包含输入的数据,并显示错误消息)。