Is there any adequate scaffolding for Django? (A la Ruby on Rails)

前端 未结 6 1503
遇见更好的自我
遇见更好的自我 2021-01-31 17:34

Is there any adequate scaffolding for Django?

It may be in the newly released 1.3 version, but I haven\'t found it yet.

6条回答
  •  不思量自难忘°
    2021-01-31 18:15

    I've looked and not yet found something for Django quite like the Rails Generate command. Django has a bit of a different philosophy. It gives you tools to make doing things easily but doesn't actually do it for you (except the admin interface). In the grand scheme of things, I think this is OK. When I use rails' scaffolding I'm not able to often keep much of the auto-generated stuff. When I do, the django admin interface would probably also have worked and given me more functionality.

    Instead, what I suggest is reading through the Django tutorial step 4, which introduces generic views, and then chapter 7 of the Django book which introduces forms. You have to be patient on chapter 7 because the authors think you want to know the minute details of the hard-way before they teach you the easy way. (try searching the page for the phrase django.forms)

    In the end the amount of work you have to do between rails and django is equivalent, and maybe slightly less with Django. However you don't have one command to automatically give you boilerplate code to use as a foundation.

提交回复
热议问题