Flask: Attributeerror: 'unboundfield' Object Has No Attribute '__call__'?
Why do I get this error? What is the UnboundField and what do I need to know in order to fix and avoid this problem in the future? Debug output when I visit http://127.0.0.1:5000/s
Solution 1:
In routes.py, I think your signup()
method should contain form = SignupForm(request.form)
. Otherwise, form is set to a class instead of an instance.
Post a Comment for "Flask: Attributeerror: 'unboundfield' Object Has No Attribute '__call__'?"