需要帮助为一对多关系设置ndb.StructuredProperty

时间:2015-02-19 12:33:20

标签: python google-app-engine

我正在使用Python(2.7)和GAE创建一个应用程序。我正在努力建立一对多的关系。有一个客户有很多属性,也有很多潜在的联系人。联系人也有各种属性。使用ndb.StructuredProperty的示例看起来非常简单,但是当我使用结构化属性行导入数据模型时,我的日志中出现以下错误:

NameError:姓名'联系人'没有定义。

非常感谢任何帮助。

main.py

from dataObjects import *

dataObjects.py

class Client(ndb.Model):
    createDate = ndb.DateProperty()
    name = ndb.StringProperty()
    address1 = ndb.StringProperty()
    address2 = ndb.StringProperty()
    state = ndb.StringProperty()
    zipCode = ndb.StringProperty()
    phone = ndb.StringProperty()
    fax = ndb.StringProperty()
    website = ndb.StringProperty()
    city = ndb.StringProperty()
    industry = ndb.StringProperty()
    status = ndb.StringProperty()
    notes = ndb.StringProperty()
    financing = ndb.StringProperty()
    contacts = ndb.StructuredProperty(Contact, repeated=True)

class Contact(ndb.Model):
    firstName = ndb.StringProperty()
    lastName = ndb.StringProperty()
    role = ndb.StringProperty()
    status = ndb.StringProperty()
    phone = ndb.StringProperty()
    fax = ndb.StringProperty()
    email = ndb.StringProperty()
    createDate = ndb.DateProperty()
    isClient = ndb.StringProperty()
    address = ndb.StringProperty()

3 个答案:

答案 0 :(得分:0)

正如Daniel Roseman所指出的那样:

"因为它还没有定义。交换模型的顺序。"

基本上,在创建模型客户端时,您的代码需要一个Contact对象。由于您的代码不存在联系人,因此它会中断。

答案 1 :(得分:0)

此外,对于无法仅更改定义顺序的情况,您可以在定义模型后添加属性(包括自引用):

class User(ndb.Model):
  pass

User.friends = ndb.StructuredProperty(User, repeated=True)
User._fix_up_properties()

答案 2 :(得分:0)

您必须交换2个模型的顺序,就像您定义客户端模型时未定义Contact模型一样。