Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 774 Bytes

post_example.md

File metadata and controls

41 lines (35 loc) · 774 Bytes
title description prev_title prev_link next_title next_link
POST 요청
Axios로 POST 요청을 시작하는 방법
기본 예제
/kr/docs/example
Axios API
/kr/docs/api_intro

POST 요청 생성

axios.post('/user', {
    firstName: 'Fred',
    lastName: 'Flintstone'
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

여러 동시 POST 요청 생성

function getUserAccount() {
  return axios.get('/user/12345');
}

function getUserPermissions() {
  return axios.get('/user/12345/permissions');
}

Promise.all([getUserAccount(), getUserPermissions()])
  .then(function (results) {
    const acct = results[0];
    const perm = results[1];
  });