2

我使用 Django 创建了一个 REST API。我正在使用一些参数发出 POST 请求

user_id="5453ab249b0dbb3b76000009"
user_type="instrcutor"

在 apiary blueprint 中,我将这些作为请求正文的一部分发送,例如:

+ Request (application/json)

    + Body        

            {
                "user_id": "5453ab249b0dbb3b76000009",
                "user_type": "instructor"
            }

但在我的 Django 视图中,request.POST 是这样的:

{u'{\n        "user_id": "5453ab249b0dbb3b76000009",\n        "user_type": "instructor"\n}': [u'']}

代替

{u'user_id': [u'5453ab249b0dbb3b76000009'], u'user_type': [u'instructor']}

如何正确发送帖子数据?

编辑

这是解决方案:

+ Request (application/x-www-form-urlencoded)

    user_id=5453ab249b0dbb3b76000009&user_type=instructor
4

1 回答 1

0

如果 apiary 正在发送 json(你在 body 块中编写),你应该查看和解析request.body而不是request.POST

于 2014-12-16T12:23:35.370 回答