作业

URL格式:

基本格式如下 schema://host[:port#]/path/…/[?query-string][#anchor]

  • schema 协议(例如:http, https, ftp)
  • host 服务器的IP地址或者域名
  • port# 服务器的端口(如果是走协议默认端口,缺省端口80)
  • path 访问资源的路径
  • query-string 参数,发送给http服务器的数据
  • anchor- 锚(跳转到网页的指定锚点位置) 例子:
    1. http://www.sina.com.cn/
    2. http://192.168.0.116:8080/index.jsp 
    3. http://item.jd.com/11052214.html#product-detail
    4. http://www.website.com/test/test.aspx?name=sv&x=true#stuff
    

参考文章:

http://codeplanet.io/principles-good-restful-api-design/

https://bourgeois.me/rest/

http://sofish.github.io/restcookbook/