我正在尝试在 Pyramid 应用程序上使用带有 SQLAlchemy 扩展的 WTForms。
我已经做好了:
from wtforms import Form, TextField,TextAreaField, validators
from wtforms.ext.sqlalchemy.fields import QuerySelectField
from app.models import DBSession
from app.models import ParentModel
class NewChild(Form):
title = TextField('Title:', [validators.Required()])
intro = TextAreaField('Introduction:')
body = TextAreaField('Body:')
parent = QuerySelectField(query_factory=DBSession().query(ParentModel).all)
DBSession 定义为
DBSession = scoped_session(sessionmaker(extension=ZopeTransactionExtension()))
查询似乎有效,但我的模板中的显示正在阅读
<app.models.ParentModel object at 0x9xxx>
或一些这样的。我究竟做错了什么?