vote up 4 vote down star
3

Django view points to a function, which can be a problem if you want to change only a bit of functionality. Yes, I could have million keyword arguments and even more if statements in the function, but I was thinking more of an object oriented approach.

For example, I have a page that displays a user. This page is very similar to page that displays a group, but it's still not so similar to just use another data model. Group also has members etc...

One way would be to point views to class methods and then extend that class. Has anyone tried this approach or has any other idea?

flag

7 Answers

vote up 3 vote down check

I've created and used my own generic view classes, defining __call__ so an instance of the class is callable. I really like it; while Django's generic views allow some customization through keyword arguments, OO generic views (if their behavior is split into a number of separate methods) can have much more fine-grained customization via subclassing, which lets me repeat myself a lot less. (I get tired of rewriting the same create/update view logic anytime I need to tweak something Django's generic views don't quite allow).

I've posted some code at djangosnippets.org.

The only real downside I see is the proliferation of internal method calls, which may impact performance somewhat. I don't think this is much of a concern; it's rare that Python code execution would be your performance bottleneck in a web app.

link|flag
Great snippet, thanks! – Sebastjan Trepča Sep 28 '08 at 10:25
+1 good bottleneck considerations. – gorsky Jan 24 at 18:43
vote up 6 vote down

If you're simply displaying data from models, why not use the Django Generic Views? They're designed to let you easy show data from a model without having to write your own view and stuff about mapping URL paramaters to views, fetching data, handling edge cases, rendering output, etc.

link|flag
vote up 2 vote down

Sounds to me like you're trying to combine things that shouldn't be combined. If you need to do different processing in your view depending on if it's a User or Group object you're trying to look at then you should use two different view functions.

On the other hand there can be common idioms you'd want to extract out of your object_detail type views... perhaps you could use a decorator or just helper functions?

-Dan

link|flag
vote up 1 vote down

Unless you want to do something a little complex, using the generic views are the way to go. They are far more powerful than their name implies, and if you are just displaying model data generic views will do the job.

link|flag
vote up 1 vote down

You can always create a class, override the call function and then point the URL file to an instance of the class. You can take a look at the FormWizard class to see how this is done.

link|flag
The markup processor ate your __'s. Use \_ to hide the markup. The class __call__ method is what's called. The issue is to be sure that the urls.py has an instance of the class available to it. It makes your urls.py somewhat more complicated. – S.Lott Sep 17 '08 at 2:07
vote up 0 vote down

If you want to share common functionality between pages I suggest you look at custom tags. They're quite easy to create, and are very powerful.

Also, templates can extend from other templates. This allows you to have a base template to set up the layout of the page and to share this between other templates which fill in the blanks. You can nest templates to any depth; allowing you to specify the layout on separate groups of related pages in one place.

link|flag
vote up 0 vote down

Generic views will usually be the way to go, but ultimately you're free to handle URLs however you want. FormWizard does things in a class-based way, as do some apps for RESTful APIs.

Basically with a URL you are given a bunch of variables and place to provide a callable, what callable you provide is completely up to you - the standard way is to provide a function - but ultimately Django puts no restrictions on what you do.

I do agree that a few more examples of how to do this would be good, FormWizard is probably the place to start though.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.