我正在浏览器中使用 REST 客户端尝试 django-tastypie(邮递员)
GET 效果很好:
GET http://127.0.0.1:8000/api/v1/entry/
GET http://127.0.0.1:8000/api/v1/entry/1/
但我无法让 PUT 与条目一起使用:
PUT GET http://127.0.0.1:8000/api/v1/entry/1/
我收到此错误:
{
"error_message": "You cannot access body after reading from request's data stream",
...
}
我允许资源中的方法。它可以从哪里来?
谢谢