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 中有多个模型表示。更具体地说,我在保存模型后使用 post_save 信号做某事。问题是信号传递了一个已保存模型的实例,但这只是 unicode 表示。这是因为我已经覆盖了unicode方法。我想将此方法保留用于管理面板,但出于其他目的,我需要访问模型的完整表示。
那么如何在信号中为模型传递不同的表示形式并在管理面板中传递不同的表示形式?
Djangopost_save信号携带已保存的实际实例。
post_save
请参阅实现以供参考。
如果您确定它是 unicode,请分享 django 版本。