我有一个Flask项目,我正在制作与SQLAlchemy模型紧密相关的表单。在我的MySQL数据库中有一个房子表和一个车库表。我想使用wtforms.ext.sqlalchemy.orm.model_form()
在Controller代码中动态制作我的“Garage”表单,但是(这里是catch)在“House”表的外键中添加一个select字段。我认为QuerySelectField()
是可行的方法。
规则:所有新车库必须有一个家长。
我正在使用Flask-SQLAlchemy扩展(flask.ext.sqlalchemy.SQLAlchemy
)和Flask-WTForms扩展(flask.ext.wtf.Form
),因此代码看起来与stackoverflow上和其他文档中的其他示例略有不同对于Flask,SQLAlchemy和WTForms。
from flask import Flask
from flask.ext.sqlalchemy import SQLAlchemy
# let's use our models to make forms!
from flask.ext.wtf import Form
from wtforms.ext.sqlalchemy.orm import model_form, validators
from wtforms.ext.sqlalchemy.fields import QuerySelectField
app = Flask(__name__)
#setup DB connection with the flask-sqlalchemy plugin
app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql://user:pass@localhost/mydb'
db = SQLAlchemy(app)
以下是我的模特:
class House(db.Model):
__tablename__ = 'House'
Id = db.Column(db.Integer, primary_key=True)
Name = db.Column(db.String(32))
Description = db.Column(db.String(128))
@staticmethod
def get(houseId):
return db.session.query(House).filter_by(Id=houseId).one()
def getAllHouses():
return House.query
这是我的路由器,用于添加车库的页面:
@app.route("/garage/add", methods=["GET", "POST"]) #add new garage to DB
def addGarage():
MyForm = model_form(Garage, base_class=Form,exclude_fk=False)
garage = Garage()
form = MyForm(request.form, garage, csrf_enabled=False)
这就是我不确定的方法:
form.ParentHouse_FK = QuerySelectField(u'Assign To', query_factory=getAllHouses, get_label="Name")
if request.method == "GET":
return render_template('addGarage.html', form=form)
elif form.validate_on_submit():
form.populate_obj(garage)
db.session.add(garage)
db.session.commit()
else:
return render_template("errors.html", form=form)
return redirect("/garage")
我的模板如下所示:
<form method="POST" action="/garage/add">
<legend>Add Garage</legend>
<div>{{ form.ParentHouse_FK.label }}{{ form.ParentHouse_FK }}</div>
<div>{{ form.Name.label }}{{ form.Name(placeholder="Name") }}</div>
<div>{{ form.Description.label }}{{ form.Description(placeholder="Description") }}</div>
<button type="submit" class="btn">Submit</button>
</form>
请注意,第一个<div>
的最后一部分form.ParentHouse_FK
没有()
,否则会出现AttributeError: 'UnboundField' object has no attribute '__call__'
错误。事实上,我仍然收到错误:UnboundField(QuerySelectField, (u'Assign To',), {'get_label': 'Name', 'query_factory': <function getAllHouses at 0x29eaf50>})
我的目标是在form
中添加一个字段,以表示当前House行的所有可用外键可能性(然后在Garage表中为新Garage条目填充Garage.ParentHouse_FK)。我知道我可以忽略(其他很棒的)model_form
快捷方式并直接定义我的所有表单,但是这个项目的模型可能会随着时间的推移而改变,只需更新模型而不必更新表格代码也是。理想情况下,我还在Jinja2模板中有一个for循环来显示所有字段。
如何正确使用QuerySelectField()
以及model_form()
来获取我所追求的内容?
谢谢!
答案 0 :(得分:3)
问题不在于QuerySelectField
,而在于您尝试将字段添加到已经实例化的表单中。这需要特别小心。这是实例化表单时字段经历的内容,您可以通过这种方式添加自己的字段。
unbound_field = QuerySelectField(...)
form._unbound_fields.append(("internal_field", unbound_field))
bound_field = unbound_field.bind(form, "field_name", prefix=form._prefix, translations=form._get_translations())
form._fields["field_name"] = bound_field
form.field_name = bound_field
然而,有一种更简单的方法。在实例化之前将该字段添加到表单类中,这将自动发生。
Form = model_form(...)
unbound_field = QuerySelectField(...)
Form.field_name = unbound_field
form = Form(...)