Django 自定义管理
目前我有一个应用程序,其 models.py 中有一个保存方法。所以我想改变这一点,以便模型不执行 save() 方法,而是有一个单独的视图,可以在管理站点中执行此操作。
你能指引我正确的方向吗?
谢谢
Currently I have an app with a save method in its models.py . So I would like to change this so the models does not do the save() method, but rather have a separate view that will do this in die admin site.
Can you please direct me in the correct direction?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
覆盖
ModelAdmin
类中的save_model
。 (裸)原始文件位于 django.contrib.admin.options 中。Override
save_model
in yourModelAdmin
class. The (bare) original is indjango.contrib.admin.options
.