RESTful 随笔

1. 资源
   需要一个自解释的名字。名字通过URL给出。如2005年按月报表:
   http://example.org/reports/2005/monthly

 

2. 资源上面可以执行多个动词
   GET/PUT/POST/DELETE

   遵循幂等原则,不是简单的CRUD。如PUT成功后可以在返回资源内容的时候, Location到替换的资源的URL。

 

3. 资源可以索引到更多的资源
   如http://example.org/reports/2005/monthly可以索引:
   http://example.org/reports/2005/month/1
   http://example.org/reports/2005/month/2
   ...
   http://example.org/reports/2005/month/12

 

4. 资源的格式是客户端提出的。客户端发出Accept头
   Accept: text/xml
   得到:
        <reports>
           <report>http://examples.org/reports/2005/month/1</report>
           <report>http://examples.org/reports/2005/month/2</report>

           ...
           <report>http://examples.org/reports/2005/month/12</report>
        </reports>
   Accept: application/json
   得到:
        {"reports":[{"report": "http://examples.org/reports/2005/month/1"},
                    {"report": "http://examples.org/reports/2005/month/2"}, 

                     ...
                    {"report": "http://examples.org/reports/2005/month/12"}, 
                   ]}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值