是否应该创建一个新的应用程序来处理博客的联合组织?
博客很简单。我只是用文字和图片发帖子。既然如此,我想知道是否最好将我的 Feed 类放在我的博客应用程序的 models.py 中,或者专门为 Feed 类创建一个新应用程序。
The blog is simple. I just make posts with text and pictures. That being the case, I'm wondering if it is best to put my Feed class in the models.py of my blog app, or create a new app specifically for the Feed class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Django 联合框架,我不会打扰创建一个单独的应用程序。
无论如何,您的提要类将与您的博客模型耦合,因此我看不到将其放在单独的应用程序中的优势。
If you're using the Django syndication framework, I would not bother creating a separate app.
Your feed class is going to be coupled to your blog model anyway, so I don't see the advantage of putting it in a separate app.