Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- onetoone
- javascript
- statement
- 밴쿠버응급실
- sqlite3
- Join
- DATABASE
- MongoDB
- query
- python데이터베이스연동
- Collections
- DBFilter
- PreparedStatement
- insertOne
- PostgresDB
- sql
- DB
- 몽고디비
- 서브쿼리
- subquery
- SubqueryFilter
- python
- cursor()
- PostgreSQL
- 자바스크립트
- insert_into
- 데이터베이스
- MySQL
- 파이썬
- postgres
Archives
- Today
- Total
목록map반복 (1)
새벽코딩

아래와 같은 반복되는 div를 component로 만드는 과정 {shoes[0].title} {shoes[0].price} {shoes[1].title} {shoes[1].price} {shoes[2].title} {shoes[2].price} // 참고로 위에 shoe변수는 아래와 같이 state로 만들어져있고, data는 json 형태 let [shoes] = useState(data) let data = [ { id : 0, title : "White and Black", content : "Born in France", price : 120000 }, { id : 1, title : "Red Knit", content : "Born in Seoul", price : 110000 }, { id : ..
Programming/React
2022. 9. 21. 15:12