我应该如何在 django 中设置我的主页?

发布于 2024-08-20 15:04:28 字数 350 浏览 2 评论 0原文

我对django不熟悉 完全约定,所以如果你这样做 提供建议,能否具体一点

考虑到我的主页将包含文章的组成部分:

https://i.sstatic.net/TTLh2.gif

在 Zend 中,在我的 IndexController 中,我将创建模型并用文章和数据填充视图。我可以用于主页视图的约定/结构是什么(我应该为 home 创建一个单独的目录,在其中转储 view.html 文件吗?还是创建一个子应用程序?),您将如何设置 django 结构为了适应这个?

I'm not familiar with django
conventions at all so if you do
provide advice could you be specific

Considering my homepage would contain components of articles:

https://i.sstatic.net/TTLh2.gif

In Zend, in my IndexController I would create models and populate the view with articles and data. What's a convention/structure I could use for the homepage view ( should I create a separate directory for home, dump a view.html file in it? or do I create a sub-application? ), how would you set your django structure up to accommodate this?

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

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

发布评论

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

评论(1

无尽的现实 2024-08-27 15:04:28

Django 项目的基本组件是应用程序。每个应用都包含相关的模型视图模板模板标签过滤器到其项目的一部分。索引视图导入/使用其他应用程序的资源来完成其工作。将主页视为一个整体,并将每个独立的部分放在自己的应用程序中。

The basic component of a Django project is the application. Each app contains models, views, templates, template tags, and filters relevant to its portion of the project. The index view imports/uses resources from other apps to get its work done. Think of the homepage as parts brought into a whole, and put each independent part in its own application.

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