오늘은 React 3번째 시간입니다.
Today I Learned
- React를 활용한 list 페이지 만들기
constructor(props){
super(props);
this.state={
list:[
{"id":92032472,"title":"eff","writerId":"newlec","content":"af"}
],
count:0,
page:1
};
}
componentDidMount(){
fetch(`/api/notice/list?p=${this.state.page}`)
.then((response)=>{
return response.json();
})
.then((list)=>{
this.setState({list});
});
}
{
this.state.list.map(notice=><tr key={notice.id}>
<td>{notice.id}</td>
<td className="title indent text-align-left"><a href={notice.id}>{notice.title}</a>[{notice.cmtCount}]</td>
<td>{notice.writerId}</td>
<td>{notice.regdate}</td>
<td>{notice.hit}</td>
</tr>)
}