[1차 프로젝트] 장바구니에서 주문으로 이동

백수·2022년 7월 24일
0

장바구니에서 결제로 이동

  const letOrder = () => {
    fetch(`http://10.58.0.74:8000/orders/order`, {
      //오더 테이블에 POST메소드를 보낸다. 
      method: 'POST',
      headers: { Authorization: localStorage.getItem('jwt') },
    })
      .then(response => response.json())
      .then(() => {
        setItem([]);
      //장바구니를 비워주고 제 랜더링 시킨다.
      });
  };

제품 삭제

const removeBag = id => {
    fetch(`http://10.58.7.133:8000/carts/cart/${cart_id}`, {
      
      //카트 테이블에 제품아이디를 붙여 DELETE멧소드로 전송 
      method: 'DELETE',
      headers: { Authorization: localStorage.getItem('jwt') },
    })
      .then(response => response.json())
      .then(data => setItem(data.carts));
  };

주문리스트 불러오기

   fetch('http://10.58.0.74:8000/orders/order', {
      method: 'GET',
      headers: { Authorization: localStorage.getItem('jwt') },
    })
      .then(response => response.json())
      .then(data => setItem(data));
  },
profile
안녕하세요백수아빠입니다.

0개의 댓글