いろんな可愛い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: [] });
});
};
Reference
この問題について(いろんな可愛いFetch💦), 我々は、より多くの情報をここで見つけました https://velog.io/@hook/다양한-귀욤뽁짝-Fetch-들テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol