一些常用的网络名词理解

1: restful , 将后端CRUD的操作转换为前端http get post put delete的操作。将交互的数据想象成资源。相当于直接由前端直接对资源进行操作。

https://www.ruanyifeng.com/blog/2011/09/restful.html

https://www.zhihu.com/question/28557115

看Url就知道要什么
看http method就知道干什么
看http status code就知道结果如何

 

上一篇:使用 Spring 构建 RESTful Web 服务


下一篇:springboot07-RESTful风格