ERROR

[JSP] 수정 화면이 빈 화면일 때

hs_developer 2022. 7. 9. 20:14

문제

게시판을 수정할 때 이젠 게시글 데이터를 가지고 와야 하는데 빈 화면만 나타날 때

 

 

해결

1. 수정 버튼 클릭 시 수정 화면(updateAction.jsp)로 이동하게 하기

<form method="post" action="updateAction.jsp?bbsID=<%=bbsID%>">

 

2. 이전 데이터 가져오는 get 함수 입력

<tbody>
    <tr>
        <td><input type="text" class="form-control" placeholder="글 제목" name="bbsTitle" maxlength="50" value="<%=bbs.getBbsTitle()%>"></td>
    </tr>
    <tr>
        <td><textarea class="form-control" placeholder="글 내용" name="bbsContent" maxlength="2048" style="height: 350px;"><%=bbs.getBbsContent()%></textarea></td>
    </tr>
</tbody>
value="<%=bbs.getBbsTitle()
<%=bbs.getBbsContent()%>