您的 Django 开发过程/步骤(逐步)

发布于 2024-09-02 14:39:33 字数 1435 浏览 4 评论 0原文

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

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

发布评论

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

评论(1

得不到的就毁灭 2024-09-09 14:39:33

我的指导方针是我希望尽快看到一些成果。即使它使用丑陋的模板,视图也非常基本,甚至模型也不完全完整。

大致的顺序

  1. 设置
  2. 模型
  3. Syncdb
  4. URL
  5. 非常基本的视图(主要使用通用视图,因此通常不需要自己编写任何视图)
  6. 创建基本模板(同样,没什么花哨的)
  7. 创建一个每个视图的模板,扩展基本模板
  8. 创建测试

然后,我继续根据需要创建更好的模型,更好的视图,更奇特的模板或更多测试,但不按任何特定顺序 - 每次我处理什么我认为这会给我的时间带来最大的价值,但最重要的是每一个变化都很小。一旦运行,您就可以在几分钟内查看并测试您所做的大部分更改。

My guideline is that I want to see something working as soon as possible. Even if it uses ugly templates, the view is very basic, or even the models are not totally complete.

This is roughly the order of things:

  1. Settings
  2. Models
  3. Syncdb
  4. Urls
  5. Very basic views (mostly using generic views, so very often no need to write any views myself)
  6. Create base template (again, nothing fancy)
  7. Create a template for each of the views, extending the base template
  8. Create tests

And then, I go on a create better models, better views, more fancy templates, or more tests as needed, but not in any specific order - Every time I deal with what I think would give the best value for my time, but the most important thing is every change is small. Once you have it running, you can see and test most changes you make in a matter of minutes.

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