React의 스플릿 구문(...name)
스프레드 구문
스플릿 구문을 사용하면 배열을 병합하여 매우 편리합니다.
map 메소드도 사용해 모든 요소를 브라우저에 표시시켜 보겠습니다.
Spread.jsimport React, { useState } from 'react'
export const Spread = () => {
const [items, setItems] = useState([]);
const addItem = () => {
setItems([...items,
{
id: items.length,
value: Math.floor(Math.random() * 10) + 1
}])
}
return (
<div>
<button onClick={addItem}>Add a number</button>
<ul>
{
items.map((item) =>
<li key={item.id} >id: {item.id} ; Number {item.value}</li>)
}
</ul>
</div>
)
}
실제 움직임
Reference
이 문제에 관하여(React의 스플릿 구문(...name)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/iwasaki-hub/items/cfe6ee2698d22b91ff99
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import React, { useState } from 'react'
export const Spread = () => {
const [items, setItems] = useState([]);
const addItem = () => {
setItems([...items,
{
id: items.length,
value: Math.floor(Math.random() * 10) + 1
}])
}
return (
<div>
<button onClick={addItem}>Add a number</button>
<ul>
{
items.map((item) =>
<li key={item.id} >id: {item.id} ; Number {item.value}</li>)
}
</ul>
</div>
)
}
Reference
이 문제에 관하여(React의 스플릿 구문(...name)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/iwasaki-hub/items/cfe6ee2698d22b91ff99텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)