Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8223807
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:50:37+00:00 2026-06-07T14:50:37+00:00

I trying out Django’s class based views (CBVs). class BlahView(TemplateView): template_name = ‘blah/blah.html’ def

  • 0

I trying out Django’s class based views (CBVs).

class BlahView(TemplateView):
    template_name = 'blah/blah.html'
    def get_context_data(self, **kwargs):
        #code...

    def get(self, request, **kwargs):
        #more code...

Now, I know that I can get the request params from self.request. Now say I want to parse these request params and store them within the class. Can I store those in self.xxx? Now, obviously based on how classes work, this seems straightforward.

But I can’t make out the flow of control, looking at the definition of View (superclass of TemplateView). The source mentions as_view() to be the ‘entry-point’

I thought of setting my instance variables at the beginning of get_context_data() but that doesn’t seem right to do initialization there.

Can I define an __init__() for my CBV?
If so, will there be threading issues or something where multiple page-accesses possibly work with a global instance of my parsed data?

I know this sounds a bit messy, but I’m just a bit confused with the code flow in CBVs.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T14:50:38+00:00Added an answer on June 7, 2026 at 2:50 pm

    According to the source of django.views.generic.base.View.as_view:

    • on django startup, as_view() returns a function view, which is not called
    • on request, view() is called, it instantiates the class and calls dispatch()
    • the class instance is thread safe

    According to the source of django.views.generic.base.View.__init__, the request object is out of scope at this point so you can’t parse it in your own constructor overload.

    However, you could parse the request and set class view instance attributes in an overload of django.views.generic.base.View.dispatch, this is safe according to the source:

    class YourView(SomeView):
        def dispatch(self, request, *args, **kwargs):
            # parse the request here ie.
            self.foo = request.GET.get('foo', False)
    
            # call the view
            return super(YourView, self).dispatch(request, *args, **kwargs)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to Python and trying to figure out Django 1.3's class-based generic views.
I'm trying out Django's class-based views, and liking them so far, but I can't
I am currently trying out Haystack for our django based forum site. I was
I am using classed based views with django 1.3 and am trying to figure
I am trying to figure out general guidelines for arranging views/templates in a django
I am trying out ajax file upload in django .I coded the javascript ,django
I'm running Django 1.2 beta and trying out the new feature: message framework. http://docs.djangoproject.com/en/dev/ref/contrib/messages/
I'm trying to figure out a way to serialize some Django model object to
I've been trying to figure out how to use google chart-wrapper with my django
I'm using Django templating with Google App Engine. I'm trying unsuccessfully to print out

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.