restful接口规范

1.对url进行规范,写RESTful风格的url

非REST的url:
https://xxx/queryProduct.action?pid=111&pType=0
规范后:
https://xxx/queryProduct/111
特点:更简洁,参数通过路径传递。

2.HTTP方法规范

不管是增删改查,路径是不变的。

3.HTTP contentType规范

请求时设置contentType。

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

restful接口规范

上一篇:关于高版本web3j调用okhttp3.RequestBody.create(Ljava/lang/String;Lokhttp3/MediaType;)Lokhttp3/RequestBody异常


下一篇:django -- ContentType