2
votes
1answer
605 views

tastypie accessing data from non pk field [closed]

I tried this example from Tastypie Cookbook. By adding this code to access user Resource from the username rather than the id. #myapp/api/resources.py class UserResource(ModelResource): class ...
1
vote
2answers
1k views

passing request variables in django/tastypie resources

I need to execute filter query inside tastypie resources. the input should be the headers of url for example new Ext.data.Store({ proxy: { url :'api/users/' type: "ajax", ...
2
votes
2answers
1k views

Django-Tastypie: How Do You Access (Http)request object in the Bundle?

I need to access the HttpRequest object in my Resource's dehydrate method. In the docs, it shows that bundle.request is a valid attribute (it's in the resources.html page). When I try to add it ...