在我到达帖子部分之前,我一直在逐字阅读美味派教程:http: //django-tastypie.readthedocs.org/en/latest/interacting.html#creating-a-new-resource-post
当我运行此命令时,我不断收到以下错误:
No JSON object could be decoded
我检查并确定我正在逐字逐句地遵循文档。
谢谢你的帮助
原来是一个带有 cURL 的 windows 东西。
例如:所以,这个:
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/