我下面的字tastypie教程字,直到我到達後部分: http://django-tastypie.readthedocs.org/en/latest/interacting.html#creating-a-new-resource-post無JSON對象可以被解碼 - tastypie - 捲曲
當我運行此命令我不斷收到以下錯誤: No JSON object could be decoded
我檢查了一下,我確定我正在逐字處理文檔。
感謝您的幫助
我下面的字tastypie教程字,直到我到達後部分: http://django-tastypie.readthedocs.org/en/latest/interacting.html#creating-a-new-resource-post無JSON對象可以被解碼 - tastypie - 捲曲
當我運行此命令我不斷收到以下錯誤: No JSON object could be decoded
我檢查了一下,我確定我正在逐字處理文檔。
感謝您的幫助
原來是一個窗戶的東西與cURL。
如進行轉義:那麼,這樣的:
curl --dump-header - -H "Content-Type: application/json" -X POST --data '{"body": "This will prbbly be my lst post.", "pub_date": "2011-05-22T00:46:38", "slug": "another-post", "title": "Another Post", "user": "/api/v1/user/1/"}' http://localhost:8000/api/v1/entry/
應該是:
curl --dump-header - -H "Content-Type: application/json" -X POST --data "{\"body\": \"This will prbbly be my lst post.\", \"pub_date\": \"2011-05-22T00:46:38\", \"slug\": \"another-post\", \"title\": \"Another Post\", \"user\": \"/api/v1/user/1/\"}" http://localhost:8000/api/v1/entry/
感謝您更新此答案,我有完全相同的問題! – 2012-09-25 08:06:41