當前位置: 首頁>>代碼示例>>Python>>正文


Python apis.Page方法代碼示例

本文整理匯總了Python中apis.Page方法的典型用法代碼示例。如果您正苦於以下問題:Python apis.Page方法的具體用法?Python apis.Page怎麽用?Python apis.Page使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在apis的用法示例。


在下文中一共展示了apis.Page方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: index

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def index(*, page = '1'):
    '''
    summary = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'
    blogs = [
        Blog(id='1', name='Test blog', summary = summary, created_at = time.time()-120),
        Blog(id='2', name='Javascript IT', summary = summary, created_at = time.time()-3600),
        Blog(id='3', name='Learn Swift', summary = summary, created_at = time.time()-7200),
    ]
    '''
    page_index = get_page_index(page)
    num = yield from Blog.find_number('count(id)')
    page = Page(num, page_index)
    if num == 0:
        blogs = []
    else:
        blogs = yield from Blog.find_all(order_by='created_at desc', limit=(page.offset, page.limit))

    return {
        '__template__': 'blogs.html',
        'page': page,
        'blogs': blogs
    } 
開發者ID:tianzhenyun,項目名稱:python-awesome-web,代碼行數:24,代碼來源:handlers.py

示例2: index

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def index(*, page='1'):
    page_index = get_page_index(page)
    num = yield from Blog.findNumber('count(id)')
    page = Page(num, page_index)
    if num == 0:
        blogs = []
    else:
        blogs = yield from Blog.findAll(orderBy='created_at desc', limit=(page.offset, page.limit))
    # ?????????????????????
    # app.py?response_factory???handler.py??????????
    return {
        '__template__': 'blogs.html',
        'page': page,
        'blogs': blogs
    }


# day11??
# ???????? 
開發者ID:ReedSun,項目名稱:Preeminent,代碼行數:21,代碼來源:handlers.py

示例3: index

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def index(request,*,page='1'):
	page_index = get_page_index(page)
	num = await Blog.findNumber('count(id)')
	page = Page(num,page_index)
	if page == 0:
		blogs = []
	else:
		blogs = await Blog.findAll(orderBy = 'created_at desc',limit=(page.offset,page.limit))
	return{
		'__template__' : 'blogs.html',
		'page' : page,
		'blogs' : blogs,
		'__user__' : request.__user__
	} 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:16,代碼來源:handlers.py

示例4: api_comments

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_comments(*,page='1'):
	page_index = get_page_index(page)
	num = await Comment.findNumber('count(id)')
	p = Page(num,page_index)
	if num == 0:
		return dict(page=p,comments=())
	comments = await Comment.findAll(orderBy='created_at desc',limit=(p.offset,p.limit))
	return dict(page=p,comments=comments) 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:10,代碼來源:handlers.py

示例5: api_get_users

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_get_users(*,page='1'):
	page_index = get_page_index(page)
	num = await User.findNumber('count(id)')
	p = Page(num,page_index)
	if num ==0 :
		return dict(page=p,users=())
	users = await User.findAll(orderBy='created_at desc',limit=(p.offset,p.limit))
	for u in users:
		u.passwd = '******'
	return dict(page=p,users=users) 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:12,代碼來源:handlers.py

示例6: api_blogs

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_blogs(*,page='1'):
	page_index = get_page_index(page)
	num = await Blog.findNumber('count(id)')
	p = Page(num,page_index)
	if num == 0:
		return dict(page=0,blogs={})
	blogs = await Blog.findAll(orderBy='created_at desc',limit=(p.offset,p.limit))
	return dict(page=p,blogs=blogs) 
開發者ID:syusonn,項目名稱:awesome-python3-webapp,代碼行數:10,代碼來源:handlers.py

示例7: api_get_users

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_get_users(request, *, page = '1'):
    '''get all users'''
    check_admin(request)
    page_index = get_page_index(page)
    num = yield from User.find_number('count(id)')
    p = Page(num, page_index)
    if num == 0:
        return dict(page = p, users = ())
    users = yield from User.find_all(order_by='created_at desc', limit = (p.offset, p.limit))
    for u in users:
        u.password = '*' * 8
    return dict(page = p, users = users) 
開發者ID:tianzhenyun,項目名稱:python-awesome-web,代碼行數:14,代碼來源:handlers.py

示例8: api_blogs

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_blogs(*, page = '1'):
    page_index = get_page_index(page)
    num = yield from Blog.find_number('count(id)')
    p = Page(num, page_index)
    if num == 0:
        return dict(page = p, blogs = ())
    blogs = yield from Blog.find_all(orderBy='created_at desc', limit=(p.offset, p.limit))
    return dict(page=p, blogs=blogs) 
開發者ID:tianzhenyun,項目名稱:python-awesome-web,代碼行數:10,代碼來源:handlers.py

示例9: api_comments

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_comments(*, page = '1'):
    '''get all comments.'''
    page_index = get_page_index(page)
    num = yield from Comment.find_number('count(id)')
    p = Page(num, page_index)
    if num == 0:
        return dict(page = p, comments = ())
    comments = yield from Comment.find_all(order_by = 'created_at desc', limit = (p.offset, p.limit))
    return dict(page = p, comments = comments) 
開發者ID:tianzhenyun,項目名稱:python-awesome-web,代碼行數:11,代碼來源:handlers.py

示例10: _get_blogs_by_page

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def _get_blogs_by_page():
    total = Blog.count_all()
    page = Page(total, _get_page_index())
    blogs = Blog.find_by(
        'order by created_at desc limit ?,?', page.offset, page.limit)
    return blogs, page 
開發者ID:tzshlyt,項目名稱:python-webapp-blog,代碼行數:8,代碼來源:urls.py

示例11: api_get_comments

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_get_comments():
    total = Comment.count_all()
    page = Page(total, _get_page_index())
    comments = Comment.find_by(
        'order by created_at desc limit ?,?', page.offset, page.limit)
    return dict(comments=comments, page=page) 
開發者ID:tzshlyt,項目名稱:python-webapp-blog,代碼行數:8,代碼來源:urls.py

示例12: api_get_users

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_get_users():
    total = User.count_all()
    page = Page(total, _get_page_index())
    users = User.find_by(
        'order by created_at desc limit ?,?', page.offset, page.limit)
    for u in users:
        u.password = '******'
    return dict(users=users, page=page) 
開發者ID:tzshlyt,項目名稱:python-webapp-blog,代碼行數:10,代碼來源:urls.py

示例13: api_blogs

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_blogs(*, page='1'):
    page_index = get_page_index(page)
    num = yield from Blog.findNumber('count(id)') # num?????
    p = Page(num, page_index)  # ??Page???Page???apis.py????
    if num == 0:
        return dict(page=p, blogs=())  # ?????0,????,??app.py?response??????
    # ??????0,??????????
    # limit??select??????????,?????????,?????????????
    blogs = yield from Blog.findAll(orderBy='created_at desc', limit=(p.offset, p.limit))
    return dict(page=p, blogs=blogs)  # ????,??response?????

# day14??
# API????? 
開發者ID:ReedSun,項目名稱:Preeminent,代碼行數:15,代碼來源:handlers.py

示例14: api_comments

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def api_comments(*, page='1'):
    page_index = get_page_index(page)
    num = yield from Comment.findNumber('count(id)')  # num?????
    p = Page(num, page_index)  # ??Page?????????
    if num == 0:
        return dict(page=p, comments=())  # ???????????????app.py?response??????
    # ??????0,??????????
    # limit??select??????????,?????????,?????????????
    comments = yield from Comment.findAll(orderBy='created_at desc', limit=(p.offset, p.limit))
    return dict(page=p, comments=comments)

# day14??
# API????? 
開發者ID:ReedSun,項目名稱:Preeminent,代碼行數:15,代碼來源:handlers.py

示例15: index

# 需要導入模塊: import apis [as 別名]
# 或者: from apis import Page [as 別名]
def index(*, page='1'):
    page_index = get_page_index(page)
    num = yield from Blog.findNumber('count(id)')
    page = Page(num)
    if num == 0:
        blogs = []
    else:
        blogs = yield from Blog.findAll(orderBy='created_at desc', limit=(page.offset, page.limit))
    return {
        '__template__': 'blogs.html',
        'page': page,
        'blogs': blogs
    } 
開發者ID:xsingHu,項目名稱:xs-python-architecture,代碼行數:15,代碼來源:handlers.py


注:本文中的apis.Page方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。