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.
在Django中,如果我做一个抽象模型类,然后有实际的派生类,只有这些类会有关联表,抽象类不能自己实例化。如果我删除 abstract=True 元信息,则会为基类创建一个实际表,但这样做允许客户端代码创建基类的对象。
有没有办法强制客户端代码总是实例化派生类,同时有一个与基类关联的表?
您可以尝试在课堂上返回或None提高,我不知道这是否会影响其他任何事情,但值得一试。NotImplemented__new__
None
NotImplemented
__new__