0
votes
1answer
159 views

Django-Tasypie image upload example with JQuery

I'm looking for a way to implement client side file (image) upload from jquery to Django-Tastypie. So far server side seems correct testing with CURL: I found this post helpfull Django-tastypie: Any ...
0
votes
1answer
89 views

jQuery — CORS and Headers (Tastypie)

I'm accessing an API via a CORS request. The API response for create sets a 'Location' header of the newly created resource. I am unable to access this via jQuery's xhr object. var location = ...
0
votes
0answers
242 views

Ajax Post Request to TastyPie Doesn't Do Anything

I am having an issue with the Django TastyPie API and creating a post request in JQuery. The curl request: curl --dump-header - -H "Content-Type: application/json" -X POST --data ...
3
votes
1answer
444 views

Can't POST to Django Tastypie cross-domain XHR

Trying to post to this Django Tastypie API: http://lit-hollows-9760.herokuapp.com/api/food I have this middleware installed to allow for cross-domain XHR: https://gist.github.com/1369619 from ...
1
vote
0answers
121 views

Not able to parse json output from DJango view in jquery autocomplete

I have a tastypie based REST api developed and it returns proper JSON Following is the JSON returned if I start typing mou in the city text box which is auto complete (JQuery AutoComplete) {"meta": ...
2
votes
2answers
852 views

django-tastypie PATCH gives me a “400 (Bad Request)”

I am running a Django site on Apache which is front'ed by Nginx instance to serve my static media. I expose an API via django-tastypie to a model that I need to PATCH a field on. When I do local ...
2
votes
1answer
481 views

How do I load sub-models with a foreign key relationship in Backbone.js?

Sorry if this is a bit convoluted... I am still learning Backbone.js... What is the proper way to load & save Backbone models that have sub-models within themselves? (And should I even be having ...
0
votes
2answers
286 views

jQuery Ajax fails when accessing a resource (Django Tastypie)

I've created a simple resource that via GET outputs my json object. The URL is http://127.0.0.1:8000/api/v1/advert/?format=json and works fine. Now when I try and access the resource using jQuery ajax ...
1
vote
2answers
229 views

Backbone response SOMETIMES returns empty

Having a problem with Backbone being inconsistent. I've added a console.log to the fetch method on my collection, so I know that there is always data being provided by the server, but sometimes my ...
0
votes
1answer
295 views

Tastypie resource usage in django view

I am working on on a web application and in future we have a plan to also develop iphone app for this. For this purpose we decide to use tastypie and make rest base framework.    I have developed a ...
8
votes
3answers
4k views

Ajax POST and Django Tastypie

curl --dump-header - -H "Content-Type: application/json" -X POST --data '{"latlong": "test"}' http://localhost:8000/geo/api/geolocation/ The above works fine but when I try to replicate the POST in ...