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.
Pony文档建议使用 mixins 来为在线编辑器自动生成的类添加方法。
文档显示了手动创建mixins.py的包含自定义方法和自动生成models.py的包含行class Product(db.Entity, ProductMixin):。
mixins.py
models.py
class Product(db.Entity, ProductMixin):
如何告诉编辑器自动添加, ProductMixin?
, ProductMixin
手动添加它会破坏目的,因为它需要手动修改models.py以避免手动修改models.py.
我错过了什么吗?
你是对的,编辑器还不支持这个功能。
此时我们正在准备包含迁移工具的 PonyORM 版本。一旦我们发布它,我们接下来要做的就是将您正在谈论的功能添加到编辑器。您将能够从编辑器下载一个 .zip 文件,其中包括 Pony 项目文件,例如 models.py、mixins 占位符、数据库配置文件。
谢谢你的问题。