次のようなファイル form.scala.html があります
@(ac: models.entities.Account)
. . .
<form id="accountForm" action="@routes.Accounts.save(ac.getId())" method="POST">
<table>
<tbody>
. . .
<tr>
<td>Role</td>
<td>
<select name="role" id="role">
@for((value, text) <- models.entities.Account.getRoles()) {
<option @if(value == ac.role){"selected"} value="@value"> @text </option>
}
</select>
</td>
</tr>
. . .
</tbody>
</table>
<p align="center">
<input type="submit" value="Save">
<a class="button" href="@routes.Accounts.index()">Cancel</a>
</p>
</form>
次のようなHTMLを出力したい
. . .
<td>Role</td>
<td>
<select name="role" id="role">
<option value="1"> Admin </option>
<option selected value="2"> User </option>
</select>
</td>
. . .
しかしselected
、表示されません。レイアウトの何が問題になっていますか?疲れているのかもしれませんが、理解できません。時間を無駄にしていただきありがとうございます。