1

我在将事件侦听器与关系模型一起使用时遇到问题,我的模型类是一个自引用表:

class Distributor(Base):
    __tablename__ = "distributors"

    id = Column(Integer, primary_key=True)
    name = Column(String, nullable = False)
    upline_id = Column(Integer, ForeignKey('distributors.id'))

    upline = relationship('Distributor', remote_side=id, backref=backref('downlines'))

我正在尝试在添加到下线集合的事件中注册一个侦听器:

def my_append_listener(target, value, initiator):
    branch_develop = len(target.downlines)

这行:

event.listen(Distributor.downlines, 'append', my_append_listener)

将给出错误: AttributeError: type object 'Distributor' has no attribute 'downlines'

但可以写如下内容:

george = Distributor("george", None)
george.downlines = [Distributor("downlineUser")]

而且我还发现,如果我将关系改写为:

downlines = relationship('Distributor', backref=backref('upline', remote_side=id))

一切运行完美。有人能告诉我代码有什么问题吗?

4

1 回答 1

0

backrefdownlines仅作为 Distributor 模型实例上的属性存在。它不是您用作侦听器目标的模型定义的属性。

幸运的是,将侦听器设置在哪一侧并没有太大区别。在父级 ( downlines) 上定义关系并侦听append事件将触发您的处理程序,无论您是附加到Distributor 实例downlines还是设置uplineDistributor 实例。

于 2012-02-16T20:43:06.963 回答