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.