REST 在现实世界中意味着什么?
可能的重复:
我对 REST 有什么不理解的地方?
我对 REST 真的很困惑.REST在现实世界中意味着什么? RESTful api 意味着什么? 如果我用 PHP 编写一些代码,它默认是 RESTful 吗? 请用一些例子来解释。
Possible Duplicate:
What am I not understanding about REST?
I am really confused about REST.What does REST mean in real world?
What does it mean being a RESTful api?
If I write some code in PHP,is it by default RESTful?
Please explain with some examples.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
维基百科有一个页面:代表性状态转移。
从实际的角度来看,这是一种利用 HTTP 特性构建 Web 服务的方法本身,而不是在 HTTP 之上构建一个层(如 SOAP 所做的那样)。
用 PHP(或任何其他语言)编写的代码本质上并不是 RESTful。这是你如何设计程序的特征,而不是你用什么语言编写程序的特征。
Wikipedia has a page on it: Representational State Transfer.
From a practical standpoint, it's a way of building a web service by taking advantage of the features of HTTP itself, rather than building a layer on top of HTTP (as SOAP does).
Code written in PHP (or any other language) isn't inherently RESTful. It's a characteristic of how you design your program, not what language you write it in.