使用自定义评论应用程序和 Django 的默认评论
我有一个自定义评论应用程序,但也想使用原始评论应用程序,而不添加自定义应用程序的字段。有办法做到这一点吗?
谢谢!
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然可以,但如果您也将自定义应用程序命名为“评论”,则必须格外小心以确保事情顺利进行。最好像这样导入 Django 的评论系统:
然后您可以像这样访问评论模型:
一眼就能看出它实际上来自哪里。
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:
You can then access the comment model like:
Which will signal where it's actually coming from at a glance.