Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个资源需要接受序列化为 XML 的 POST 请求。资源需要在发布时返回完整的对象。因此我设置
always_return_data = True
我能够成功发布数据,但响应始终是 JSON。我尝试通过说明将序列化程序设置为仅 XML
serializer = Serializer(formats=['xml'])
但我仍然得到 JSON 的响应。
有没有人看到这个并解决了它?
好的,所以答案非常简单明了……</p>
只需添加
?format=xml
到 URL(即使使用 POST),响应和内容类型也将是 XML