Photologue 模型的定义Photo
不包含方法get_previous_by_date_added
及其父模型ImageModel
。 ImageModel
继承自 djangomodels.Model
基类,该基类也没有此方法。
但是在模型中有这种方法的用法Photo
:
class Photo:
...
def get_previous_in_gallery(self, gallery):
try:
return self.get_previous_by_date_added(galleries__exact=gallery,
is_public=True)
except Photo.DoesNotExist:
return None
...
它的定义在哪里?(链接到 Photologue models.py)