我已经构建了一个包含用户数据的JWT身份验证API。使用POSTman进行测试时,服务器将返回数据,通过Axios发布时,我的API会收到请求,但返回空值。
邮递员:
Headers:
- Content-Type: 'application/x-www-form-urlencoded'
Body:
- email: 'testuser1@company.com'
- password: 'String'
Axios-View full code here
this.$http.post('http://localhost:8081/api/authenticate', {
email: this.email,
password: this.password
}, {
headers: {
"Content-Type": "application/x-www-form-urlencoded"
}
})