curl --dump-header - -H "Content-Type: application/json" -X POST --data '{"latlong": "test"}' http://localhost:8000/geo/api/geolocation/
上記はうまくいきますが、以下のajaxでPOSTを複製しようとすると500エラーが発生します。Ajax POSTとDjango Tastypie
$.ajax({
type: 'POST',
url: 'http://localhost:8000/geo/api/geolocation/',
data: '{"latlong": "test"}',
success: latlongSaved(),
dataType: "application/json",
processData: false,
});
エラーメッセージは次のとおりです。
{"error_message": "The format indicated 'application/x-www-form-urlencoded' had no available deserialization method. Please check your ``formats`` and ``content_types`` on your Serializer." .... }
この注目に値するが、クロスドメインであり、私はgitのを経由していdjango-crossdomainxhr-middleware.py使用しています:私が追加した場合要旨
をこのようなAJAX呼び出しにコンテンツタイプ:私はこのエラーを取り戻す
contentType: "application/json"
:
XMLHttpRequest cannot load http://localhost:8000/geo/api/geolocation/. Request header field Content-Type is not allowed by Access-Control-Allow-Headers.
Request URL:http://localhost:8000/geo/api/geolocation/
Request Method:OPTIONS
Status Code:200 OK
Request Headersview source
Access-Control-Request-Headers:Origin, Content-Type, Accept
Access-Control-Request-Method:POST
Origin:http://localhost:3000
Response Headersview source
Access-Control-Allow-Methods:POST,GET,OPTIONS,PUT,DELETE
Access-Control-Allow-Origin:*
Content-Type:text/html; charset=utf-8
Date:Tue, 23 Aug 2011 07:59:49 GMT
Server:WSGIServer/0.1 Python/2.6.1
ドキュメントを確認してください。url文字列にjsonオプションを設定する必要があります。 – Marcin
'curl'リクエストヘッダとjQueryヘッダの間にdiffを投稿できますか? FirebugのコンソールタブにjQueryヘッダーが表示されます。 –