class Profile(db.Model):
user = db.UserProperty()
class Playlist(db.Model):
name = db.StringProperty()
profile = db.ReferenceProperty(Profile, collection_name='playlists')
videos_num = db.IntegerProperty(default=0)
这是我模型的基本实体。我可以访问profile.playlists
之类的播放列表,但如何根据video_num对其进行排序?
答案 0 :(得分:3)
profile.playlists
只是一个db.Query。调用其.order('videos_num')
方法。