0

在将 ndb.Polymodel 超类存储为 ndb.StructuredProperty 时,我无法访问子类方法;而是调用超类方法并引发 NotImplementedError。这是我要完成的工作的精简版。

class Recipient(polymodel.PolyModel):
  name = ndb.StringProperty()

  def PrettyPrinting(self):
    raise NotImplementedError, 'Rawr'


class ShippingRecipient(Recipient):
  address_line_one = ndb.StringProperty()
  #there are other properties, but they aren't necessary here.

  def PrettyPrinting(self):
    return 'Hey, this should be called.'


class LocalRecipient(Recipient):
  distribution_location = ndb.StringProperty()
  #same deal, more attributes, but useless for this example.

  def PrettyPrinting(self):
    return 'Hey this should be called.'

class Shipment(ndb.Model):
  recipient = ndb.StructuredProperty(Recipient)

现在假设我保存了一个货件并将 ShippingRecipient 存储到货件的收件人字段中。在数据存储中,货件收件人.class == ['Recipient', 'ShippingRecipient']。当我打电话时:

shipment = Shipment.get_by_id('some_key')
shipment.recipient.PrettyPrinting()

NotImplementedError 被引发,而不是 PrettyPrinting(...) 的 ShippingRecipient 实现。我希望在访问货件的收件人字段时调用子类方法。有没有办法可以改为使用子类方法?我知道说结构化属性是 Recipient 类型会导致调用超类方法,但是也许我不完全理解为什么他们会将子类存储在接收者.class 属性中。

4

1 回答 1

1

我不相信这行得通。它只会存储 Recipient 实例。
如果您查看 PolyModel 的工作原理,那么在您的示例中,所有变体都存储为基类Recipient。它还存储子类名称,从数据存储中检索它的时间和实体,它重新创建特定的子类。

我真的怀疑他们是否会将这种机制构建到 StructuredProperty 实例化中,而您已经发现情况确实如此。

于 2013-11-09T00:25:54.423 回答