REST:相同数据的不同表示

发布于 2024-11-08 22:11:52 字数 383 浏览 0 评论 0 原文

如何构建一个 API,其中相同的数据可以以不同的格式(RESTful 格式)请求。例如。

GET /person/<id>  //get the details of resource <id>

现在,根据客户端(浏览器)的要求,数据可以作为 html(例如正常渲染)或 Json(例如 ajax 调用)发送。所以我的疑问是

  1. 我可以为两个请求保留相同的网址,还是应该将它们分开?
  2. 如何在服务器端检测请求是否为html/Json。请求类型相同(GET)。那么我应该考虑哪个参数。
  3. 如何检测客户端数据类型的差异(html/Json)\

谢谢,

bsr。

How to structure an API where the same data may request in different format, in a RESTful format. For example.

GET /person/<id>  //get the details of resource <id>

Now depending on the client (browser) requirement, the data may send as html (say normal rendering) or Json (say ajax call). So my doubts are

  1. Can I keep the same url for both requests, or should keep them seperate?
  2. How to detect whether the request is for html/Json at the server. The request type is same (GET). So which parameter should I consider.
  3. How to detect the difference in data type at client (html/Json)\

thanks,

bsr.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

终难遇 2024-11-15 22:11:52

类似的问题: REST 内容类型:它应该基于扩展还是 Accept 标头?

接受的答案有很多要点。

我可以为两个请求保留相同的 URL,还是应该将它们分开?

是的,保持它们相同。它是相同的资源,您只是要求它的不同表示形式。

如何在服务器端检测请求是否为html/Json。请求类型相同(GET)。那么我应该考虑哪个参数。

您可以使用 Accept 标头指定返回内容类型。

如何检测客户端数据类型的差异(html/Json)\

您将查看“Content-Type”标头。

Similar question: REST Content-Type: Should it be based on extension or Accept header?

The accepted answers has great points.

Can I keep the same url for both requests, or should keep them seperate?

Yes, keep them the same. Its the same resource, you're just asking for different representations of it.

How to detect whether the request is for html/Json at the server. The request type is same (GET). So which parameter should I consider.

You can use the Accept header to specify the return content-type.

How to detect the difference in data type at client (html/Json)\

You would look at the "Content-Type" header.

独闯女儿国 2024-11-15 22:11:52

添加输出类型变量怎么样?

What about adding a variable for output type?

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