Node.js

Axios

이도현 2021. 8. 30. 14:26

Get 파라미터 넘기기

 

axios.get('/test', {

    params:

        {

        test : 1234567

        }

    }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });