フォームアクションが実行される前にいくつかのエラーを知ることができない z3c.form があります。グローバル フォーム ステータス メッセージではなく、フィールドにこれらのエラーを表示したいと思います。Form.update()でウィジェットを構築してエラーを挿入するにはどうすればよいですか?
例:
@z3c.form.button.buttonAndHandler(_('Make Report'), name='report')
def report(self, action):
data, errors = self.extractData()
if errors:
self.status = "Please correct errors"
return
# Create sample item which we can consume in the page template
try:
self.output = make_report(self.context, self.request, data, filters=filters)
except zope.interface.Invalid as e:
self.status = e.message
self.errors = True
# How to target the error message to a particular field here
return
self.status = _(u"Report complete")