我想在用户提交表单并接受表单后才执行一些代码。我尝试了以下代码,但它似乎没有用。
def new():
mform=SQLFORM(db.url_tag)
if mform.process().accepted:
response.flash = 'form accepted'
else:
response.flash = 'e'
print mform.vars.id
return locals() #I have other variables in the function
在我的HTML中,我基本上使用了
{{=mform.custom.widget.XX}}
{{=mform.custom.submit}}
另一个问题是,在用户提交表单后,我怎样才能获得最新提交的记录?在我的情况下,mform.vars.id会是最新的记录ID吗?
谢谢!