flask-sqlalchemy 文档如何阅读 ?
请问代码中的 metadatas["auth"]
是什么..
with app.app_context():
db.reflect()
class User:
__table__ = db.metadatas["auth"].tables["user"]
回复
1个回答
test
2024-07-05
简答
metadatas["auth"]
会返回这个auth
数据库下的MetaData
类,其中存储了多个表对象和它们关联的数据库中的对象。
解释
https://flask-sqlalchemy.palletsprojects.com/en/3.0.x/binds
通常会在项目一开始定义好数据库映射关系,用bind_key(如meta、auth)代表不同的数据库名,后面则为对应的数据库连接配置信息。
SQLALCHEMY_BINDS = {
"meta": "sqlite:////path/to/meta.db",
"auth": {
"url": "mysql://localhost/users",
"pool_recycle": 3600,
},
}
之后定义每个表模型类时,则需指定__bind_key__ = "auth"
,表明表位于哪个数据库之中。
回到问题,上面的链接中有这样一段说明:
The default engine isSQLAlchemy.engine
, and the default metadata isSQLAlchemy.metadata
.SQLAlchemy.engines
andSQLAlchemy.metadatas
are dicts mapping all bind keys.
所以SQLAlchemy.metadatas
是一个类似这样的结构:
{
"meta": sqlalchemy.sql.schema.MetaData,
"auth": sqlalchemy.sql.schema.MetaData,
}
对于MetaData
类:A collection of Table objects and their associated schema constructs
. 它也只是一个集合,存储了多个表对象和它们关联的数据库中的对象
而它有一个tables
属性,会返回A dictionary of Table objects keyed to their name or “table key”
,就是一个表对象key与它对应的表对象的映射
因此这一整行其实就是将auth
对应的数据库内的user
对应的数据表对象赋值给了__table__
变量,省去了一个一个地再去定义表字段的过程。
__table__ = db.metadatas["auth"].tables["user"]
回复
适合作为回答的
- 经过验证的有效解决办法
- 自己的经验指引,对解决问题有帮助
- 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
- 询问内容细节或回复楼层
- 与题目无关的内容
- “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容