如何使“其他”无效PUT 请求时的 URI?
一个资源可以由多个 URI 来标识。例如,
/person/1234
/person/list?fname=John
/person/list?lname=Doe
以上所有内容都可能包含资源: Person -
id: 1234
fname: John
lname: Doe
age: 10
假设您想将 John Doe 的年龄从 10 岁更改为 15 岁。因此您将以下内容放入 /person/1234
id: 1234
fname: John
lname: Doe
age: 15
如何强制客户端使其他 2 个 url 无效?
A resource can be identified by multiple URIs. e.g.
/person/1234
/person/list?fname=John
/person/list?lname=Doe
all of the above might contain a resource:
Person -
id: 1234
fname: John
lname: Doe
age: 10
Say you want to change John Doe's age from 10 to 15. So you PUT the following to /person/1234
id: 1234
fname: John
lname: Doe
age: 15
How do I force the client to invalidate the other 2 urls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其他两个 URL 返回的 ETag 更改为新值(例如,数据的哈希值)。
Change the ETag returned by the other two URLs to a new value (eg, a hash of the data).
将
/person/list?fname=John
和/person/list?lname=Doe
重定向到/person/1234
而不是返回实体数据本身。Make
/person/list?fname=John
and/person/list?lname=Doe
redirect to/person/1234
instead of returning the entity data themselves.