python web(bottle框架)知行合一之-简单知识付费平台-”全栈“实践(11)---分页获取课程列表信息接口

python web(bottle框架)知行合一之-简单知识付费平台-”全栈“实践(11)---分页获取课程列表信息接口

PS:笔记只是为了更好表达我怎么语言表述,有些时候可能难免废话一推!
因知识有限, 如有错误, 欢迎指正!

每日细语:没有雨伞的孩子只能在努力的在雨中奔跑~

续言

本期主要讲解的是获取课程列表接口:

需求分析

前端的页面通过请求,进行分页加载全部课程列表信息,如果没有对应的课程,则显示暂无课程!

需求实现过程:

1:先批量插入测试数据:

# 批量插入一些课程信息
def InsertManyTest():
    with session_scope():
        data = [
            {
                'course_classify_code': '001',
                'course_code_id': '1000',
                'name': '爱因斯坦',
                'title': '爱因斯坦的伟大',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 0,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 1,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '002',
                'course_code_id': '1001',
                'name': '爱因斯坦2',
                'title': '爱因斯坦的伟大2',
                'describe_simple':0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '003',
                'course_code_id': '1002',
                'name': '爱因斯坦3',
                'title': '爱因斯坦的伟大3',
                'describe_simple':0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '004',
                'course_code_id': '1005',
                'name': '爱因斯坦5',
                'title': '爱因斯坦的伟大5',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '006',
                'course_code_id': '1006',
                'name': '爱因斯坦6',
                'title': '爱因斯坦的伟大6',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '007',
                'course_code_id': '1007',
                'name': '爱因斯坦7',
                'title': '爱因斯坦的伟大7',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '008',
                'course_code_id': '1008',
                'name': '爱因斯坦8',
                'title': '爱因斯坦的伟大8',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '009',
                'course_code_id': '1009',
                'name': '爱因斯坦9',
                'title': '爱因斯坦的伟大9',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '0010',
                'course_code_id': '10010',
                'name': '爱因斯坦10',
                'title': '爱因斯坦的伟大10',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '0011',
                'course_code_id': '10011',
                'name': '爱因斯坦11',
                'title': '爱因斯坦的伟大11',
                'describe_simple':0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '0012',
                'course_code_id': '10012',
                'name': '爱因斯坦12',
                'title': '爱因斯坦的伟大12',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '0013',
                'course_code_id': '10013',
                'name': '爱因斯坦13',
                'title': '爱因斯坦的伟大13',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '0014',
                'course_code_id': '10014',
                'name': '爱因斯坦14',
                'title': '爱因斯坦的伟大14',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '0015',
                'course_code_id': '10015',
                'name': '爱因斯坦15',
                'title': '爱因斯坦的伟大15',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '0016',
                'course_code_id': '10016',
                'name': '爱因斯坦16',
                'title': '爱因斯坦的伟大16',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            },
            {
                'course_classify_code': '0017',
                'course_code_id': '10017',
                'name': '爱因斯坦17',
                'title': '爱因斯坦的伟大17',
                'describe_simple': 0,
                'describe_detailed': '不想详细的描述太多!!3',
                'img_cover': 'http:\/\/ss.gxtcwl.com\/images\/fe3ebd121b239eeca2899f8d0925d963.jpg?imageView2\/1\/w\/200\/h\/200\/q\/100',
                'state': 2,
                'all_num_count': 20,
                'is_down': 1,
                'is_sell': 1,
                'is_flee': 1,
                'price': 50,
                'has_learn_num': 200,
                'has_updata_num_count': 20,
                'is_vip_flee': 0,
                'author': '爱因斯坦',
                'type': 3
            }

        ]
        query = Course.insert_many(data).execute()  # 插入了多个

查看数据库插入结果:

python web(bottle框架)知行合一之-简单知识付费平台-”全栈“实践(11)---分页获取课程列表信息接口_第1张图片
image.png

2:分页查询请求读取数据库记录信息:
定义接口:


python web(bottle框架)知行合一之-简单知识付费平台-”全栈“实践(11)---分页获取课程列表信息接口_第2张图片
image.png

3:在main.py导入该接口模块:

# 导入所有的服务接口模块
from business_logic.api_offer import login,register,get_course

4:编写对应的获取课程业务逻辑

python web(bottle框架)知行合一之-简单知识付费平台-”全栈“实践(11)---分页获取课程列表信息接口_第3张图片
image.png

5:在course_logic.py定义相关数据分页请求处理

  from business_logic.db_model.knowledgepay_model import session_scope, Course

# 分页查询
def get_course_paginate(page_num=1):
    with session_scope():
        result = Course.select().dicts().order_by(Course.id).paginate(int(page_num), 4)
        result_list = []
        is_ends = False
        if result:
            for row in result:
                result_list.append(row)
        if not result_list:
            is_ends = True
        return result_list, is_ends

6:在get_course.py路由的模块:

from bottle import get, post, request
from base_framework.net import web_helper, session_helper
from business_logic.api_db_logics import course_logic
from base_framework.utils import json_helper


@get('/api/v1/course/get/')
@post('/api/v1/course/get/')
def callback():
    pass
    '''获取课程列表'''
    page_num = web_helper.get_query('page_num', 'page_num', False)  # 默认开启 不能为空的验证
    if not page_num:
        page_num = 1

    '''1:连接数据库并读取数据列表'''
    result_list, is_ends = course_logic.get_course_paginate(page_num=page_num)
    return_date = {
        "data": result_list
    }
    if is_ends and int(page_num) > 1:
        return web_helper.return_msg("9992", "加载完毕", result_list)

    if not result_list:
        return web_helper.return_msg("9991", "暂无课程", result_list)

    return web_helper.return_msg("0000", "获取成功", return_date)

接口测试:

python web(bottle框架)知行合一之-简单知识付费平台-”全栈“实践(11)---分页获取课程列表信息接口_第4张图片
image.png
python web(bottle框架)知行合一之-简单知识付费平台-”全栈“实践(11)---分页获取课程列表信息接口_第5张图片
image.png

结束

获取课程的逻辑其实就是把所有课程给提取出来。因为我们还没涉及到按分类进行读取,所哟可以暂时就全部的提取!

以上笔记纯属个人学习实践总结,有兴趣的同学可以加群一起学习讨论QQ:308711822

你可能感兴趣的:(python web(bottle框架)知行合一之-简单知识付费平台-”全栈“实践(11)---分页获取课程列表信息接口)