Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm testing web.py and forms but I cant get any value in return. This is the code:

import web
from web import form
class add:
    def GET(self):
        f = login()
        return render.formtest(f)

    def POST(self): 
        f = login()
        print f["ip"].value
        return render.formpost(f)

render = web.template.render('templates/')      
login = form.Form(
    form.Textbox("ip", id="ip"),
    form.Textbox('snmp_community'),
)

urls = ( '/','index', '/add', 'add')
app = web.application(urls,globals())
if __name__ == "__main__": app.run()

I followed this example: http://webpy.org/form but when I print the value of f["ip"].value or f.d.ip I always get "None".

Thank you for the help.

share|improve this question
Can you fix your indentation? As it stands now, this won't run. – Noufal Ibrahim Feb 12 '12 at 15:19

1 Answer

Here is a line from the web.py doc:

Note: You cannot access form values before having validated the form!

so you'll have to call f.validates() before you can access the posted data.

share|improve this answer
great, now it works! I missed that line on the documentation, thanks. – user1203602 Feb 12 '12 at 17:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.