摘要:
使用步骤: 1. 编写数据库配置,并加载 # 创建数据库配置类 class Config(object): # 数据库链接地址 SQLALCHEMY_DATABASE_URI = 'mysql://root:mysql@127.0.0.1:3306/test' # 禁用追踪 SQLALCHEMY_T 阅读全文
摘要:
将模型数据序列化成JSON数据 使用步骤 1. 导包 # 导包 from flask_restful import Api, Resource from flask_restful import marshal_with, fields from flask_restful import marsh 阅读全文
摘要:
RequestParser请求处理 使用步骤: 1. 导包 from flask_restful.reqparse import RequestParser 2. 创建requestparser对象 # 1. 创建RequestParser实例 parser = RequestParser() 3. 阅读全文
摘要:
安装模块 pip install flask_restful 入门使用 使用步骤: 1. 导包 # 1. 导包 from flask_restful import Api, Resource 2. 创建api对象并接管app # 2. 创建API对象并接管app api = Api(app) 3. 阅读全文