如何使“其他”无效PUT 请求时的 URI?

发布于 2024-12-01 14:57:18 字数 374 浏览 1 评论 0原文

一个资源可以由多个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心舞飞扬 2024-12-08 14:57:18

将其他两个 URL 返回的 ETag 更改为新值(例如,数据的哈希值)。

Change the ETag returned by the other two URLs to a new value (eg, a hash of the data).

痴意少年 2024-12-08 14:57:18

/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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文