This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 引言 -- | |
Restful是一种非常优美的http接口设计风格及设计规范。使用restful原理来设计接口,可以非常显著地降低多个系统之间的耦合性,也可以使得接口变得非常一致,不仅美观,而且容易理解和上手。 | |
然而在实际工作中,似乎很难真正用上完全的Restful,理想和现实总是有差距的- - | |
通过不断地实践归纳,结合restful的核心原理,我小结出了一套类Restful接口规范。它基本上解决了我在项目中遇到的90%的问题,自我感觉良好,哈哈。 | |
-- 正文 -- | |
== 请求/响应规范 == | |
请求 | |
GET: 使用url传参,如:?a=1&b=2 |