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.

Figuring out some differences between the code examples and the tutorial. Within the code examples they write out all POST db write requests as follows.

def POST(self, id):
        form = New.form()
        post = model.get_post(int(id))
        if not form.validates():
        return render.edit(post, form)
        model.update_post(int(id), form.d.title, form.d.content)
        raise web.seeother('/')

So in the above mode.update_post points to:

def update_post(id, title, text):
    db.update('entries', where="id=$id", vars=locals(),title=title, content=text)

First of all I fail to get this to work correctly, at least with sqlite3. I get an unsupported type error. I will try to add a line before such as

title = str(form.d.title)

I just get a null value back.

So alternatively I just use web.input() and have no problem at all setting up the update variable. Example below:

 def POST(self):
    i = web.input()
    n = db.insert('todo', title=i.title)
    raise web.seeother('/')

So kind of a two part question. First being why the heck can I not get the code example to work with the way they have written out their updates. Secondly why do they bounce between methods for the tutorial and the code examples. Is one a more elegant solutions? Any help appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.