Как отправить данные тела и заголовки с помощью запроса ax ios? - PullRequest
0 голосов
/ 02 мая 2020

Я пробовал

axios.get(url, {headers:{},data:{}}) 

Но это не работает.

Ответы [ 2 ]

1 голос
/ 02 мая 2020

Вы должны обратиться к https://github.com/axios/axios#request -config

Проверьте раздел для данных и заголовка.

0 голосов
/ 02 мая 2020

Вы можете попробовать это:

const getData = async () => {
    try {
        const response = await axios.get(`https://jsonplaceholder.typicode.com/posts`, {
            method: 'GET',
            body: JSON.stringify({
                id: id,
                title: 'title is here',
                body: 'body is here',
                userId: 1
            }),
            headers: {
                "Content-type": "application/json; charset=UTF-8"
            }
        })
            .then(response => response.json())
            .then(json => console.log(json));
        console.warn(response.data);
    } catch (error) {
        console.warn(error);
    }
}
...