使用自定义评论应用程序和 Django 的默认评论

发布于 2024-12-14 14:18:20 字数 72 浏览 2 评论 0原文

我有一个自定义评论应用程序,但也想使用原始评论应用程序,而不添加自定义应用程序的字段。有办法做到这一点吗?

谢谢!

I have a custom comment app but also want to use the original Comment app, without the added fields of my custom app. Is there a way to do this?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我还不会笑 2024-12-21 14:18:20

当然可以,但如果您也将自定义应用程序命名为“评论”,则必须格外小心以确保事情顺利进行。最好像这样导入 Django 的评论系统:

from django.contrib import comments as django_comments

然后您可以像这样访问评论模型:

django_comments.Comment

一眼就能看出它实际上来自哪里。

Sure, but if you named your custom app "comments" as well, you'll have to be extra careful to keep things straight. It would probably be best to import Django's comment system like so:

from django.contrib import comments as django_comments

You can then access the comment model like:

django_comments.Comment

Which will signal where it's actually coming from at a glance.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文