我必须向给我的 API 发出 POST 请求。
我应该向它发送一些数据并取回一个JWT
令牌。
我必须发送的数据是一个data
这样的对象:
{
"firstName": "Jane",
"address": "Lohmühlenstraße 65",
"numberOfChildren": 2,
"occupation": "EMPLOYED",
"email": "jane.doe@getpopsure.com"
}
API 文档如下所示:
curl https://challenge-dot-popsure-204813.appspot.com/user \
-H 'Content-Type: application/json' \
-d '{"firstName":"Jane","address":"Lohmühlenstraße 65","numberOfChildren":2,"occupation":"EMPLOYED","email":"jane.doe@getpopsure.com"}' \
-X POST
我正在使用 axios 发送一个POST
带有对象的请求,但我收到一个422
错误:
Failed to load resource: the server responded with a status of 422 ()
这是我的 POST 请求,data
上面的对象在哪里:
axios.post('https://challenge-dot-popsure-204813.appspot.com/user', data)
.then(function (response) {
debugger
console.log(response);
})
.catch(function (error) {
console.log(error);
});
任何想法可能是什么问题?