我正在使用web2py中的自定义表单并面临2个问题
form.accepts(request.vars, session) => False
form.errors => <Storage ()>
现在我拥有:
控制器:
def new():
form=crud.create(db.i2l_letter)
print form.errors
if form.accepts(request.vars, session):
response.flash='Bitte warten'
elif form.errors:
response.flash='Bitte fuellen sie das Formular richtig aus'
else:
pass
return dict(form=form)
查看:
{{if form.errors:}}
Your submitted form contains the following errors:
<ul>
{{=form.errors.date_format}}
{{for fieldname in form.errors:}}
<li>{{=fieldname}} error: {{=form.errors[fieldname]}}</li>
{{pass}}
</ul>
{{form.errors.clear()}}
{{pass}}
{{=form.custom.begin}}
<table>
<tr>
<td>{{=form.custom.label.date_format}}</td>
<td>{{=form.custom.label.myref}}</td>
<td>{{=form.custom.label.yourref}}</td>
</tr>
<tr>
<td>{{=form.custom.widget.date_format}}</td>
<td>{{=form.custom.widget.myref}}</td>
<td>{{=form.custom.widget.yourref}}</td>
</tr>
</table>
<div>{{=form.custom.submit}}</div>
{{=form.custom.end}}
{{pass}}
所以我做错了什么?
答案 0 :(得分:1)
如果你有web2py 2.0+,请尝试用以下代码替换你的控制器代码:
def new():
form=SQLFORM(db.i2l_letter)
print form.errors
if form.process().accepted:
response.flash='Bitte warten'
elif form.errors:
response.flash='Bitte fuellen sie das Formular richtig aus'
return dict(form=form)
答案 1 :(得分:1)
crud.create()
会自动处理表单处理,因此您不应在其后调用form.accepts()
。请阅读book section on Crud。