Запрос пост API с кодом ошибки 400 с помощью Axios - PullRequest
0 голосов
/ 11 июня 2019

Я новичок в реакции на нативный и пытаюсь запросить Api с помощью axios, но ответ - запрос не выполнен с кодом состояния 400

changePress = async () => {
    console.log(this.state.user)
    let data = await {
        'name': this.state.user.name,
        'email': this.state.user.email,
        'password': this.state.user.password
    }
    let config = await {
        'headers': {
            'Content-Type':'application/json'
        }
    }
    try{
        await Api.post('/register', data, config)
        .then(res => {
            console.log(res);
            console.log(res.data);
        })
    }
    catch(err){
        console.log(err)
    }
}

Запрос не выполнен с кодом состояния 400

...