いろんな可愛いFetch💦


  • 蒸リストの認証トークンパッケージ、ヘッドに装着、
  • 蒸しリスト認証コードとして表示

    componentDidMount() {
        fetch('http://10.58.0.59:8000/user/wishlist', {
          // method: 'GET',
          headers: {
            Authorization:sessionStorage.getItem("token")
          },
        })
          .then(res => res.json())
          .then(res => {
          
            console.log('페치', res.result);
            this.setState({
              wishlistItems: res.result,
            });
          });

    買い物かごを空けましょう。

     deleteAllHandler = () => {
        fetch(`${API}/cart`, {
          method: "DELETE",
          headers: {
            Authorization: localStorage.getItem("token"),
          },
        }).then((res) => {
          this.setState({ carts: [] });
        });
      };