关于 spring 如何获取 Content-Type 不同的参数
- application/x-www-form-urlencoded:@RequestParam or request.getParamter()
- application/json:@RequestBody
关于 axios 设置 Content-Type 格式
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
关于请求 json 数据如何转换成 application/x-www-form-urlencoded 的数据格式
data: qs.stringify(data),
为什么需要这样做
- 源文件 org.springframework.security.oauth2.provider.endpoint.TokenEndpoint#postAccessToken
- 此方法采用 @RequestParam 决定了 Content-Type 类型必须为 application/x-www-form-urlencoded
-
postAccessToken(Principal principal, @RequestParam Map<String, String> parameters)
axios 请求参考
{
url: '/auth/oauth/token',
method: 'post',
data: qs.stringify(data),
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
auth: {
username: 'pc',
password: 'secret'
},
}
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于