20👍
✅
You are trying to pass in a model
keyword argument to the url()
function; you need to pass in a kwargs
argument instead (it takes a dictionary):
url(r'^download/template/(?P<object_id>\d+)/$', views.myview().myfunction,
kwargs=dict(model=models.userModel), name="sample")
8👍
This:
url(r'^download/template/(?P<object_id>\d+)/$', views.myview().myfunction,model=models.userModel, name="sample")
Should be:
url(r'^download/template/(?P<object_id>\d+)/$', views.myview.as_view(model=models.userModel), name="sample")
See docs
Your current implementation is not thread safe. For example:
from django import http
from django.contrib.auth.models import User
from django.views import generic
class YourView(generic.TemplateView):
def __init__(self):
self.foo = None
def your_func(self, request, object_id, **kwargs):
print 'Foo', self.foo
self.foo = 'bar'
return http.HttpResponse('foo')
urlpatterns = patterns('test_app.views',
url(r'^download/template/(?P<object_id>\d+)/$', YourView().your_func,
kwargs=dict(model=User), name="sample"),
)
Would you expect it to print ‘Foo None‘ ? Well be careful cause the instance is shared across requests:
Django version 1.4.2, using settings 'django_test.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
Foo None
[03/Dec/2012 08:14:31] "GET /test_app/download/template/3/ HTTP/1.1" 200 3
Foo bar
[03/Dec/2012 08:14:32] "GET /test_app/download/template/3/ HTTP/1.1" 200 3
So, when it’s not thread safe, you can’t assume that it will be in a clean state when the request starts – unlike when using as_view().
👤jpic
0👍
I believe you would have the same functionality (and avoid threading issues) if you did this in your views.py
from django.views.generic import TemplateView
from .models import userModel
class myview(TemplateView):
def myfunction(self, request, object_id, *args, **kwargs):
model = userModel
# ... Do something with it
- How do you divide your project into applications in Django?
- Django: How to keep the test database when the test is finished?
- Django – Custom Admin Actions Logging
- Get ContentType id in Django for generic relation
- How to unit test methods inside django's class based views?
Source:stackexchange.com