RESTful架构
接口一套标准/规范
定义:
RESTful架构是一种接口设计风格,约束了接口实现的规范,遵守了rest风格的web服务便可称为Restful。
作用:
可以保证API文档的编写风格,提高文档的易读性。
RESTful架构
参数:
1.键值对格式
username=test123&password=123456&code=112233
2.JSON格式
{”username”:“test123”,
“password”:“123456”,
“code”:112233
}