摘要:
将模型数据序列化成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. 阅读全文