전자상거래 반응 템플릿을 구축하는 방법
13274 단어 javascriptapireactprogramming
2장: React에서 RESTful API를 사용하는 방법에 대한 단계별 가이드
React에서 RESTful API 사용
첫 번째 chapter 에서 Tailwind CSS 및 React Router 을 사용하여 기본 React 앱을 만들었습니다. 또한 제품 개체를 사용하여 정적 홈페이지를 만들었습니다.
이 장에서는 홈 페이지 제품 목록을 위해 React에서 RESTful API를 사용할 것입니다.
2장: React에서 RESTful API 사용
이 장에서는 다음 작업을 수행합니다.
1. API 생성
데모에서는 JSON 파일을 사용하여 내부 API를 생성합니다. 따라서 “public/data/” 폴더에 products.json 파일을 생성합니다. products.json에 아래 JSON 데이터를 복사합니다.
공개/데이터/products.json
{
"products": [
{
"id": 1,
"name": "iPhone 12 Pro",
"href": "#",
"price": "$999.99",
"brand": "Apple",
"category": "Cell Phones",
"thumbnail": "https://images.unsplash.com/photo-1611791483458-6da70329aac6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80"
},
{
"id": 2,
"name": "iPhone 13 Pro Max",
"href": "#",
"price": "$1200",
"brand": "Apple",
"category": "Cell Phones",
"thumbnail": "https://images.unsplash.com/photo-1632633728024-e1fd4bef561a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80"
},
{
"id": 3,
"name": "HP Laptop",
"href": "#",
"price": "$800",
"brand": "HP",
"category": "Computers",
"thumbnail": "https://images.unsplash.com/photo-1496181133206-80ce9b88a853?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80"
},
{
"id": 4,
"name": "Apple Laptop",
"href": "#",
"price": "1600",
"brand": "Apple",
"category": "Computers",
"thumbnail": "https://images.unsplash.com/photo-1453928582365-b6ad33cbcf64?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80"
},
{
"id": 5,
"name": "Google pixel 6",
"href": "#",
"price": "$1000",
"brand": "Google",
"category": "Cell Phones",
"thumbnail": "https://images.unsplash.com/photo-1635870664257-430f094c25db?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80"
},
{
"id": 6,
"name": "Sony headphone",
"href": "#",
"price": "$499.99",
"brand": "Sony",
"category": "Headphones",
"thumbnail": "https://images.unsplash.com/photo-1546435770-a3e426bf472b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80"
},
{
"id": 7,
"name": "Apple AirPods",
"href": "#",
"price": "$222.99",
"brand": "Apple",
"category": "Headphones",
"thumbnail": "https://images.unsplash.com/photo-1600294037681-c80b4cb5b434?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80"
},
{
"id": 8,
"name": "Canon camera",
"href": "#",
"price": "$999.99",
"brand": "Canon",
"category": "Cameras",
"thumbnail": "https://images.unsplash.com/photo-1500646953400-045056a916d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&h=400&q=80"
}
]
}
JSON Server 을 사용하여 코딩이 없는 전체 가짜 REST API를 얻을 수도 있습니다. 하지만 이 장에서는 공용 폴더에 JSON 파일을 추가했습니다.
2. 홈페이지 제품 개체 제거
홈페이지 구성 요소 src/pages/Home.js에서 const 제품을 제거합니다.
+++ b/src/pages/Home.js
@@ -1,102 +1,64 @@
import React from 'react';
-const products = [
- {
- id: 1,
- name: 'Product Name',
- href: '#',
- price: '$9.99',
- imageSrc: '[https://images.unsplash.com/photo-1555982105-d25af4182e4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80'](https://images.unsplash.com/photo-1555982105-d25af4182e4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80'),
- },
- {
- id: 2,
- name: 'Product Name',
- href: '#',
- price: '$10.99',
- imageSrc: '[https://images.unsplash.com/photo-1508423134147-addf71308178?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80'](https://images.unsplash.com/photo-1508423134147-addf71308178?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=400&h=400&q=80'),
- },
- {
- id: 3,
- name: 'Product Name',
- href: '#',
3. API 사용
API를 사용하려면 AJAX 요청을 해야 합니다. API 요청을 위해 브라우저 내장window.fetch 방법을 사용할 것입니다.
3.1 상태 만들기
가져온 제품을 저장하기 위해 구성 요소 상태 개체를 만들 것입니다. 생성자 함수를 만들고 초기 상태 개체 값을 추가합니다. isLoaded는 로딩 메시지를 표시하는 데 사용됩니다.
class Home extends React.Component {
constructor(props) {
super(props);
this.state = {
isLoaded: false,
products: []
};
}
3.2 API 요청
수명 주기 방법componentDidMount을 사용하여 원격 끝점에서 데이터를 로드할 것입니다.
componentDidMount()는 컴포넌트가 마운트(트리에 삽입)된 직후에 호출됩니다. DOM 노드가 필요한 초기화는 여기로 이동해야 합니다. 원격 끝점에서 데이터를 로드해야 하는 경우 여기가 네트워크 요청을 인스턴스화하기에 좋은 위치입니다.
componentDidMount() {
fetch("/data/products.json")
.then(res => res.json())
.then(
(result) => {
this.setState({
isLoaded: true,
products: result.products
});
}
)
}
3.3 렌더링 제품
홈 구성 요소에 아래 render() 메서드를 복사합니다.
import React from 'react';
class Home extends React.Component {
constructor(props) {
super(props);
this.state = {
isLoaded: false,
products: []
};
}
componentDidMount() {
fetch("/data/products.json")
.then(res => res.json())
.then(
(result) => {
this.setState({
isLoaded: true,
products: result.products
});
}
)
}
render() {
const { isLoaded, products } = this.state;
return (
<div>
<section className="bg-white py-8">
<div className="container mx-auto flex items-center flex-wrap pt-4 pb-12">
<nav id="store" className="w-full z-30 top-0 px-6 py-1">
<div className="w-full container mx-auto flex flex-wrap items-center justify-between mt-0 px-2 py-3">
<a className="uppercase tracking-wide no-underline hover:no-underline font-bold text-gray-800 text-xl " href="#">
Store
</a>
<div className="flex items-center" id="store-nav-content">
<a className="pl-3 inline-block no-underline hover:text-black" href="#">
<svg className="fill-current hover:text-black" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M7 11H17V13H7zM4 7H20V9H4zM10 15H14V17H10z" />
</svg>
</a>
<a className="pl-3 inline-block no-underline hover:text-black" href="#">
<svg className="fill-current hover:text-black" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M10,18c1.846,0,3.543-0.635,4.897-1.688l4.396,4.396l1.414-1.414l-4.396-4.396C17.365,13.543,18,11.846,18,10 c0-4.411-3.589-8-8-8s-8,3.589-8,8S5.589,18,10,18z M10,4c3.309,0,6,2.691,6,6s-2.691,6-6,6s-6-2.691-6-6S6.691,4,10,4z" />
</svg>
</a>
</div>
</div>
</nav>
{!isLoaded ? (
<div class="w-full">
<div class="flex items-center justify-center">
Loading...
</div>
</div>
) : (
<div className="grid grid-cols-1 gap-y-10 sm:grid-cols-2 gap-x-6 lg:grid-cols-3 xl:grid-cols-4 xl:gap-x-8">
{products.map((product) => (
<a key={product.id} href={product.href}>
<img className="hover:grow hover:shadow-lg" src={product.thumbnail} />
<div className="pt-3 flex items-center justify-between">
<p className="">{product.name}</p>
<svg className="h-6 w-6 fill-current text-gray-500 hover:text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M12,4.595c-1.104-1.006-2.512-1.558-3.996-1.558c-1.578,0-3.072,0.623-4.213,1.758c-2.353,2.363-2.352,6.059,0.002,8.412 l7.332,7.332c0.17,0.299,0.498,0.492,0.875,0.492c0.322,0,0.609-0.163,0.792-0.409l7.415-7.415 c2.354-2.354,2.354-6.049-0.002-8.416c-1.137-1.131-2.631-1.754-4.209-1.754C14.513,3.037,13.104,3.589,12,4.595z M18.791,6.205 c1.563,1.571,1.564,4.025,0.002,5.588L12,18.586l-6.793-6.793C3.645,10.23,3.646,7.776,5.205,6.209 c0.76-0.756,1.754-1.172,2.799-1.172s2.035,0.416,2.789,1.17l0.5,0.5c0.391,0.391,1.023,0.391,1.414,0l0.5-0.5 C14.719,4.698,17.281,4.702,18.791,6.205z" />
</svg>
</div>
<p className="pt-1 text-gray-900">{product.price}</p>
</a>
))}
</div>
)}
</div>
</section>
</div>
);
}
}
export default Home;
이 장의 전체 작업 코드는 푸시되어 Github — archive/Chapter_2에서 사용할 수 있습니다.
전체 데모:
React App
이전: Chapter 1: Step by step guide on how to build a React Ecommerce template using Tailwind CSS
다음: 출시 예정
읽어 주셔서 감사합니다.
더 많은 것을 기대해 주세요!
balajidharma.medium.com에서 저를 팔로우하세요.
자세한 내용은 PlainEnglish.io에서 확인하십시오. 우리 free weekly newsletter에 가입하십시오. 에서 우리를 따르십시오. 우리 Community Discord를 확인하고 우리 Talent Collective에 가입하십시오.
Reference
이 문제에 관하여(전자상거래 반응 템플릿을 구축하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/balajidharma/how-to-build-an-ecommerce-react-template-21j0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)