Esempio n. 1
0
 def getArticles(self, type, startPage, limit):
     mongoService = MongoService()
     listArticles = []
     start = (startPage - 1) * config.pageSize
     mark = common.getMark()
     listArticles = mongoService.getListArticles(type, start, limit, mark)
     return listArticles
Esempio n. 2
0
 def getArticles(self, type, startPage, limit):
     mongoService=MongoService()
     listArticles=[]
     start = (startPage-1)*config.pageSize
     mark = common.getMark()
     listArticles=mongoService.getListArticles(type, start, limit, mark)
     return listArticles