Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 peewee从 csv创建记录。看起来语法需要关键字 args:
user = User.create(username='admin', password='test')
如果 csv 中的行看起来像(admin, test),那么知道字段名称('username', 'password')以形成要传入的 dict 会很方便(看起来我无法传入模型的值列表来推断相应的字段是什么)。
(admin, test)
('username', 'password')
是否有一个User按定义顺序列出字段名称的属性?
User
谢谢
好像是User._meta.get_field_names()
User._meta.get_field_names()
我刚刚看到有人在另一个问题中提到它。