SpringBoot入門


5-3 掲示板の改善

⑥ビューの修正

・new.html(入力のビュー)を以下の通り修正します。

(わかりやすくするためにすべてのコードを記述していますが、修正不要の部分は5-1で作成されたソースのままで構いません)

<body> <h1>掲示板登録</h1> <form method="post" action="/create" th:object="${bbs}"> <input type="hidden" name="id" th:value="*{id}"> <table> <tr> <th class="col_name">タイトル</th> <td class="col_data"><input type="text" name="title" th:value="*{title}"size="40" maxlength= "40" /></td> </tr> <tr> <th>内容</th> <td><textarea name="note" rows="10" cols="60" th:utext="*{note}"> </textarea></td> </tr> <tr> <th>投稿者</th> <td><input type="text" name="user" th:value="*{user}" size="15" maxlength= "15" /></td> </tr> <tr> <th>分類</th> <td><select id="division" name="division"> <option value="0"></option> <option th:each="list: ${lists}" th:value="${list.id}" th:text="${list.name}" th:field="*{division}">pulldown </option> </select> </td> </tr> </table> <hr> <input type="submit" value="登 録" /> </form> <form action="/"> <input type="submit" value="戻 る" /> </form> </body>