@RequestParam和 @RequestBody的区别

注解@RequestParam接收的参数是来自HTTP请求体或请求url的QueryString中。

@RequestParam用来处理 Content-Type 为 application/x-www-form-urlencoded 编码的内容,Content-Type默认为该属性。

@RequestParam也可用于其它类型的请求,例如:POST、DELETE等请求。

 

 

注解@RequestBody接收的参数是来自requestBody中,即请求体。

一般用于处理非 Content-Type: application/x-www-form-urlencoded编码格式的数据,比如:application/json、application/xml等类型的数据。

上一篇:pyinstaller打包出现ImportError: OpenCV loader: missing configuration file: [‘config.py‘]


下一篇:【Django】CSRF token missing or incorrect问题处理