I need to pass an object from my database to my form, from which i want to read the default values out. My current code looks like this:
My initialisation:
form = EditEventForm(event)
And my form class:
class EditEventForm(FlaskForm):
def __init__(self, event):
self.event = event
name = StringField('Name', validators=[DataRequired()], default=self.event.name)
description = TextAreaField('Description', validators=[DataRequired()], default=self.event.description)
street = StringField('Street and number', validators=[DataRequired()], default=self.event.street)
city = StringField('City', validators=[DataRequired()], default=self.event.city)
time = StringField('Time', validators=[DataRequired()], default=self.event.time)
But obviously, the form cannot access the self-context. Is there another way i can achieve it so my fields can read the data out from a passed object?
If your task is just to populate form with default data you can do it like this:
And then populate your newly created form with desired data
Edit
As was suggested in the comments the stated above pattern is bad because when either model or form object is changed then all instances of form creation must be tracked down. One can use someting like this instead:
From the documentation: