作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不确定如何更新REST资源的各个属性。考虑以下示例:
# HTTP GET to /users/1.xml
<?xml version="1.0" encoding="UTF-8" ?>
<response>
<user>
<id>1</id>
<name>John Doe</name>
<email>john@doe.com</email>
</user>
</response>
HTTP PUT
,但是我需要通过完整的XML(与HTTP GET响应匹配)来修改资源,这对我的客户端造成了很大的麻烦。
The PUT method requests that the enclosed entity be stored under the supplied Request-URI. If the Request-URI refers to an already existing resource, the enclosed entity SHOULD be considered as a modified version of the one residing on the origin server.
最佳答案
如果您的服务器框架足够灵活以处理它,则可以执行以下操作:
Request:
PUT /users/1/email
Content-Type: text/plain
john@newemail.com
Response:
200 OK
Content-Location: /users/1
关于rest - 我应该如何更新REST资源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3150203/
我是一名优秀的程序员,十分优秀!