json.loads函数没有收到正确的JSON - EXCEPTION:期望属性名称:第1行第1列(char 1)

时间:2012-07-27 18:11:41

标签: json exception curl

我在Windows 7上,我的curl表达式如下:

curl --header“X-CSRFToken:csrftoken”-X POST -H“Content-type:application / json”-d“{”username“:”Steven“}”

然而,

会引发异常
simplejson.loads(request.body)

大概是因为json.loads函数没有收到适当的JSON。

它显示:Caught Exception:Expecting property name:line 1 column 1(char 1)

这里发生了什么?

1 个答案:

答案 0 :(得分:1)

类似的问题:link

试试这个:"{"username":"Steven"}"更改为'{"username":"Steven"}'