0
votes
1answer
34 views

how i use tastypie to enter data in mongoengine file field? [closed]

I want to enter data in MongoDB using tastypie. I am not able to figure out how to send image ie. filefield using tastypie? I am using MongoEngine as ODM. I can see reference field, embedded document ...
0
votes
1answer
97 views

django queryset with mongodb

I'm working on a Django app using the tastypie API, I basically want to create objects and then filter them by date so that I know which objects are new ('give me all the objects from that date to ...
2
votes
0answers
258 views

Tastypie-nonrel, django, mongodb: too many nestings

I am developing a web application with django, backbone.js, tastypie and mongodb. In order to adapt tastypie and django to mongodb I am using django-mongodb-engine and tastypie-nonrel. This ...
0
votes
0answers
201 views

Tastypie - MongoEngine - Pre_save signal - Cancel saving on error

I'm using Django Tastypie and MongoEngine for MongoDB. I need to do some attribute altering when saving a user: The email address needs to be unique. So I built a pre_save signal function which ...
2
votes
1answer
585 views

Django,mongodb,Tastypie-nonrel : List of ForeignKey

On my Django-mongodb model, I would like to have an object with a listField containing reference to other objects. Here is an example of what I want to achieve : models.py class ...