根据文档:http://code.google.com/appengine/docs/python/datastore/datamodeling.html#References 自动创建的反向引用对象是一个Query对象,因此可以对其进行迭代并进行提取调用。
但是: 我有一个型号:
class User(db.Model):
name = db.StringProperty()
...
和第二个模型:
class Thing(db.Model):
owner = db.ReferenceProperty(User)
...
当我尝试访问反向引用时:
for thing in user.thing_set:
...
或:
user.thing_set.fetch(100)
我得到这样的例外:
<type 'exceptions.TypeError'>: '_ReverseReferenceProperty' object is not iterable
或者像这样:
<type 'exceptions.AttributeError'>: '_ReverseReferenceProperty' object has no attribute 'fetch'
我做错了什么或者有什么改变吗?我很确定以前它像Query一样工作。文档页面上甚至还有一个示例,它显示了与我相同的用法:
for obj in obj1.secondmodel_set:
# ...
另外,没有反向引用的查询工作正常:
things = Thing.all().filter('owner =', user)
答案 0 :(得分:1)
两种方法(迭代和获取)都应该有效。要进行调试,您可能需要记录(或打印):
print dir(user)
[..., 'thing_set', ...]
print dir(user.thing_set)
[..., '__iter__', ... , 'fetch', ...]
只是为了查看对象包含的内容......这可能会给你一些可能出错的提示。
一些想法: