错误消息:InterfaceError:<unprintable InterfaceError object>

2024-06-02 05:03:53 发布

您现在位置:Python中文网/ 问答频道 /正文

将两个表链接在一起并尝试创建一个包含外键的窗体。在

在sqlalchemy.exc.InterfaceError在

InterfaceError:无法打印的InterfaceError对象

数据库链接完成方式:

class Client(db.Model):
__tablename__ = 'Client'
..
stand_id = db.Column(db.String(10), index = True, unique = True)
stands = db.relationship('Stand', backref= 'Stand', lazy='select')


def __init__(self,client_name,contact_number,contact_name,contact_email,stand_id):
    self.client_name = client_name
    self.contact_number = contact_number
    self.contact_email = contact_email
    self.contact_name = contact_name
    self.stand_id = stand_id

 class Stand(db.Model):
__tablename__ = 'Stand'
..
stand_number = db.Column(db.String(10), db.ForeignKey('Client.stand_id' )) 

def __repr__(self):
    return '<Stand %r>' % (self.stand_id)


def __init__(self, stand_name,items, quantity,install_date, 
derig_date,comments,last_update, stand_number):
 self.stand_name = stand_name
 self.items = items
 self.quantity = quantity 
 self.install_date = install_date
 self.derig_date =  derig_date
 self.comments = comments
 self.last_update = last_update
 self.stand_number = stand_number

形式为

^{pr2}$

并将其视为

@app.route('/newstand', methods = ['GET','POST'])
def newstand(): 
 form = StandForm()
 if form.validate(): 
    stand = Stand(
     request.form['stand_name'], request.form['items'], request.form['quantity'], 
     request.form['install_date'],request.form['derig_date'], request.form['comments'], 
     request.form['last_update'], request.form['stand_number'])
    form.populate_obj(stand) 
    db.session.add(stand)
    db.session.commit() 
    return render_template('liststands.html',
         stand = stand,
          form=form) 
 else:
    flash("Your form contained errors")
 return render_template('newstand.html', form = form

我觉得我写的函数不太正确,有什么意见/帮助吗?在


Tags: installnameselfformidnumberdbdate
1条回答
网友
1楼 · 发布于 2024-06-02 05:03:53

我刚刚遇到了同样的错误,看起来可能是类似的问题。 QuerySelectField返回完整的对象,而不仅仅是ID。对于上面的示例:

重命名表单字段以反映其包含的内容:

class StandForm(Form):
  ...
  stand = QuerySelectField(query_factory=lambda: Client.query.all())

在视图中构造对象时使用ID:

^{pr2}$

另外,上面的例子是用表单内容显式地构造Stand对象,并且再次通过调用form.populate_obj,这可能是多余的(它将再次填充对象上所有相同的字段),因此其中一个可能会被删除。在

如果form.populate_obj自动尊重外键(我假设它是这样,尽管我没有尝试过),那么您可以将视图代码简化为:

@app.route('/newstand', methods = ['GET','POST'])
def newstand(): 
  form = StandForm()
  if form.validate(): 
    stand = Stand()
    form.populate_obj(stand)
    ...

相关问题 更多 >