The "view" in Django isn't the View in Model-View-Controller (MVC). The
V is more like the template, which, you're correct, should not have
business logic in it.

As a simple (very simple, please don't jump on me) analogy from MVC to
Django, the M does correspond to the database models, the C corresponds
to the view functions (in that the views are used to pull stuff from the
database and package them for the templates or to get information from
web forms and send it to the database), and the V corresponds to the
template, properly initialized and populated by view functions.

So, while you shouldn't stick business login in Views, it's okay to
stick it in views, because they're really more like part of the
Controllers.

Todd

P.S. When I started that, I thought I would be explicating, not
obfuscating, something. Now, I'm not sure.


On Wed, 2006-12-27 at 17:44 -0800, Jason C. Leach wrote:
Hi:

Specifically, I'm curious how you do it without putting SQL in the
view. From what I understand about the methodology of MVC this should
not be done.

J.


On 12/27/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote:
>
> On 12/27/06, Jason <[EMAIL PROTECTED]> wrote:
> > What do we do in Django if we want to use complex data models like
> > JOINs, or a shopping card with invoices and line-items? Do we try and
> > keep as much in the database as possible using stored procedures or
> > views?
> >
> > What happens to the model when you want to do more than just SELECT x,
> > y, z FROM A?
>
> Hi Jason,
>
> You're best off asking a more specific question. There are indeed ways
> to perform JOINs in Django, and it's certainly possible to implement a
> shopping cart with invoices and line-items. Provide a more specific
> question, and we'll show you how to do it.
>
> Adrian
>
> --
> Adrian Holovaty
> holovaty.com | djangoproject.com
>
> >
>



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to