REST API 和 Web 应用程序之间的区别
当我要编写 REST API 时有什么区别?
我的意思是我应该考虑哪些对于 Web 应用程序来说不重要的考虑因素? 包括服务器、编程风格、更严格的安全考虑等。
What is the difference when I am about to write a REST API?
I mean what considerations I should take into account which are not important for web applications?
including the server, programming style, tighter security considerations, etc..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我来说,Web 应用程序意味着用户界面——从服务器传递的 HTML。另一方面,REST API 使用独立于表示的 HTTP 协议,并且同样可以支持桌面客户端、移动客户端、Flash/Flex 客户端等。
To me, a web application implies a user interface -- HTML delivered from a server. A REST API, on the other hand, uses the HTTP protocol independent of presentation, and could equally support desktop clients, mobile clients, Flash/Flex clients, etc.
您应该遵循 Roy Fielding 文档中所述的 RESTful 原则:http:// /www.ics.uci.edu/~fielding/pubs/dissertation/top.htm
You should be following RESTful principles as described in Roy Fielding document: http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm