6

在我到达帖子部分之前,我一直在逐字阅读美味派教程:http: //django-tastypie.readthedocs.org/en/latest/interacting.html#creating-a-new-resource-post

当我运行此命令时,我不断收到以下错误: No JSON object could be decoded

我检查并确定我正在逐字逐句地遵循文档。

谢谢你的帮助

4

1 回答 1

17

原来是一个带有 cURL 的 windows 东西。

  1. JSON 数据应使用双引号 ("") 而不是单引号引起来。
  2. json数据包中的所有双引号必须用反斜杠(\)转义

例如:所以,这个:

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-07-10T12:43:50.177 回答