在appengine中对collection_name进行排序

时间:2011-05-28 14:45:28

标签: python google-app-engine sorting

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对其进行排序?

1 个答案:

答案 0 :(得分:3)

profile.playlists只是一个db.Query。调用其.order('videos_num')方法。