1

我有看起来像的文件 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没有出现。布局有什么问题?也许我累了,但我就是无法理解。谢谢你浪费你的时间。

4

2 回答 2

1

有时模板引擎试图转义字符串数据时会出现奇怪的情况,我在尝试使用模板变量编写整个属性而不是模板化它们的值时遇到了这种情况。您应该能够通过包装"selected"Html构造函数中以使 Twirl 逐字处理它来解决此问题。所以:

<option @if(value == ac.role){Html("selected")} value="@value"> @text </option>

您还应该在 Twirl 项目中打开一个问题,因为我个人认为您拥有它的方式应该按原样工作。

于 2014-08-07T13:05:09.807 回答
0

哦!我发现错误!原因有二,我觉得:

  1. 不同的数据类型(字符串和整数)
  2. 使用==代替 string.contentEquals(otherString)

工作代码是

<select name="role" id="role">
@for((value, text) <- ac.getRoles()) {
  <option @if(value.contentEquals(ac.role + "")){selected} value="@value"> @text </option>
}  
</select>
于 2014-08-07T13:08:48.820 回答