本文整理汇总了Python中models.blog.Blog.newist方法的典型用法代码示例。如果您正苦于以下问题:Python Blog.newist方法的具体用法?Python Blog.newist怎么用?Python Blog.newist使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.blog.Blog
的用法示例。
在下文中一共展示了Blog.newist方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: entry_newist
# 需要导入模块: from models.blog import Blog [as 别名]
# 或者: from models.blog.Blog import newist [as 别名]
def entry_newist():
try:
params = {'posted': False}
params.update(request.forms)
#logging.info(params)
cb = 'entry'
if params.get('channel', '') == 'home':
cb = 'home'
return {'publish': Blog.newist(params, cb)}
except Exception as e:
logging.info(e)
abort(500)
示例2: entry_newist
# 需要导入模块: from models.blog import Blog [as 别名]
# 或者: from models.blog.Blog import newist [as 别名]
def entry_newist(channel, tag, offset):
try:
params = {
'posted': True,
'channel': channel,
'tags': tag,
'fetch': request.query.get('fetch'),
'offset': offset
}
call_back = 'entry'
if channel == 'home':
call_back = 'home'
return {'publish': Blog.newist(params, call_back)}
except Exception as e:
logging.error(e)
abort(500)