Get 파라미터 넘기기
axios.get('/test', {
params:
{
test : 1234567
}
}) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });
Get 파라미터 넘기기
axios.get('/test', {
params:
{
test : 1234567
}
}) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });