我为一个代表账单的对象制作一个crud界面,如水费账单,电费账单等。
我使用sqlalchemy来处理数据,使用wtforms来处理表单,使用flask来处理它。
这是我的路线看起来像是用来编辑现有账单的表格:
@app.route('/edit_bill/<int:bill_id>', methods = ['GET'])
def edit_bill(bill_id):
s = Session()
bill = s.query(Bill).filter_by(id=bill_id).first()
form = BillForm(obj=Bill)
return render_template('edit_bill.html', form = form)
使用wtforms,我将bill对象传递给BillForm构造函数,确保表示要编辑的帐单的数据填充到表单中。
这就是它窒息的地方。这是例外:
AttributeError: Neither 'InstrumentedAttribute' object nor 'Comparator' object associated with Bill.date_due has an attribute 'strftime'
现在,我已经深入了解python shell并查询了一个帐单,以确保date_due上有一个datetime.date
对象,就是这样。我使用Jinja来构建我的前端,所以我已经考虑过创建一个模板过滤器,但我不知道这对wtforms有什么用处,看起来sqlalchemy无论如何都是窒息的。
那它是做什么的?我非常自信我只需要弄清楚如何将datetime.date
对象变成一个字符串,但我不确定该怎么做。
HALP。谢谢!
编辑:这是BillForm类:
class BillForm(Form):
id = HiddenField()
name = TextField(u'Name:', [validators.required()])
pay_to = TextField(u'Pay To:',[validators.required()])
date_due = DateField(u'Date Due:',[validators.required()])
amount_due = IntegerField(u'Amount Due:', [validators.required()])
date_late = DateField(u'Late After:',[validators.required()])
amount_late = IntegerField(u'Late Amount:', [validators.required()])
date_termination = DateField(u'Termination Date:',[validators.required()])
也是映射类:
class Bill(Base):
__tablename__ = 'bills'
id = Column(Integer, primary_key=True)
name = Column(String)
pay_to = Column(String)
amount_due = Column(Integer)
date_due = Column(Date)
amount_late = Column(Integer)
date_late = Column(Date)
date_termination = Column(Date)
def __init__(self, name, pay_to, amount_due, date_due, amount_late, date_late, date_termination):
self.name = name
self.pay_to = pay_to
self.amount_due = amount_due
self.date_due = date_due
self.amount_late = amount_late
self.date_late = date_late
self.date_termination = date_termination
def __repr__(self):
return "<Bill ('%s', '%s', '%s', '%s')>" % (self.name, self.pay_to, self.amount_due, self.date_due)
答案 0 :(得分:5)
我花了一些时间来弄清楚你哪里出错了,但我想我发现了。这是你的代码:
@app.route('/edit_bill/<int:bill_id>', methods = ['GET'])
def edit_bill(bill_id):
s = Session()
bill = s.query(Bill).filter_by(id=bill_id).first()
form = BillForm(obj=Bill)
return render_template('edit_bill.html', form = form)
现在,如果在BillForm中将类作为obj
kwarg传递,则表单会填充各种奇怪的对象。例如,如果我复制您所做的并检查form.date_due.data
,则表示它是<sqlalchemy.orm.attributes.InstrumentedAttribute at 0x277b2d0>
对象。与错误消息中所述的内容一样,此对象没有strftime
属性。
因此,您的错误位于您提供的代码的第5行。如果要使用在第4行中检索到的帐单对象的详细信息填充表单,请将第5行替换为form = BillForm(obj=bill)
。正如您所看到的,“微妙”差异是账单中的小写字母b。我复制了你的代码,我确信应该解决这个问题。
如果您感兴趣,我通常会编辑视图。
@app.route('/edit_bill/<int:bill_id>', methods = ['GET', 'POST'])
def edit_bill(bill_id):
s = Session()
bill = s.query(Bill).filter_by(id=bill_id).first()
form = BillForm(request.form, obj=bill)
if request.method == 'POST' and form.validate():
form.populate_obj(bill)
s.add(bill)
s.commit()
# Do some other stuff, for example set a flash()
return render_template('edit_bill.html', form = form)
我有一段时间没有使用SQLAlchemy所以我可能在那里犯了几个错误。希望这可以帮助!如果这回答你的问题'接受'答案。