我需要按多个字段对目录结果进行排序。
就我而言,首先按年排序,然后按月排序。年和月字段包含在我的自定义内容类型(item_publication_year
和item_publication_month
分别)中。
但是,我没有得到我想要的结果。年份和月份根本没有排序。它们应该按降序出现,即 2006、2005、2004 等。
下面是我的代码:
def queryItemRepository(self):
"""
Perform a search returning items matching the criteria
"""
query = {}
portal_catalog = getToolByName(self, 'portal_catalog')
folder_path = '/'.join( self.context.getPhysicalPath() )
query['portal_type'] = "MyContentType"
query['path'] = {'query' : folder_path, 'depth' : 2 }
results = portal_catalog.searchResults(query)
# convert the results to a python list so we can use the sort function
results = list(results)
results.sort(lambda x, y : cmp((y['item_publication_year'], y['item_publication_year']),
(x['item_publication_month'], x['item_publication_month'])
))
return results
有人愿意帮忙吗?