Flask_使用flask_marshmallow序列化数据

代码如下:

python 复制代码
from flask import Flask
from flask_marshmallow import Marshmallow
from flask_sqlalchemy import SQLAlchemy
from marshmallow import fields

app = Flask(__name__)
app.config["SQLALCHEMY_DATABASE_URI"] = "mysql+pymysql://root:123456@192.168.3.66:3306/tms?charset=utf8mb4"
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False

db = SQLAlchemy()
db.init_app(app)

ma = Marshmallow()
ma.init_app(app)


# ========================= 模型类 =========================================================
class User(db.Model):
    __tablename__ = 'admin_user'
    id = db.Column(db.Integer, primary_key=True, autoincrement=True, comment='用户ID')
    username = db.Column(db.String(20), comment='用户名')
    realname = db.Column(db.String(20), comment='真实名字')
    remark = db.Column(db.String(255), comment='备注')
    dept_id = db.Column(db.Integer, comment='部门id')


# ========================= 序列化类 =========================================================
class UserSchema(ma.Schema):
    userId = fields.Integer(attribute="id")     # 变量名称为序列化后的key名称,attribute为数据库的字段名称,若变量名称和数据库字段名称一致,可缺省attribute
    username = fields.Str()
    realname = fields.Str()


@app.route("/")
def index():
    users = db.session.query(User).all()
    print("序列化的模型类")
    print("入参数据", users)
    schema = UserSchema(many=True)
    ret = schema.dump(users)
    print("出参数据", ret)
    return ret


if __name__ == '__main__':
    app.run(debug=True, host="localhost", port=8000)

执行结果:

联表序列化,后续研究研究在给大家说说。

源码等资料获取方法

各位想获取源码等教程资料的朋友请 点赞 + 评论 + 收藏 ,三连!

三连之后我会在评论区挨个私信发给你们~

相关推荐
代码小鑫2 分钟前
A031-基于SpringBoot的健身房管理系统设计与实现
java·开发语言·数据库·spring boot·后端
赛丽曼7 分钟前
Python中的TCP
python
Json____7 分钟前
学法减分交管12123模拟练习小程序源码前端和后端和搭建教程
前端·后端·学习·小程序·uni-app·学法减分·驾考题库
小白~小黑8 分钟前
软件测试基础二十(接口测试 Postman)
python·自动化·postman
codists8 分钟前
《Django 5 By Example》阅读笔记:p76-p104
python·django·编程人
欧阳枫落17 分钟前
python 2小时学会八股文-数据结构
开发语言·数据结构·python
天天要nx21 分钟前
D64【python 接口自动化学习】- python基础之数据库
数据库·python
monkey_meng28 分钟前
【Rust类型驱动开发 Type Driven Development】
开发语言·后端·rust
落落落sss36 分钟前
MQ集群
java·服务器·开发语言·后端·elasticsearch·adb·ruby
feifeikon1 小时前
Python Day5 进阶语法(列表表达式/三元/断言/with-as/异常捕获/字符串方法/lambda函数
开发语言·python