在Play框架模板

时间:2016-08-03 01:41:51

标签: html playframework radio-button

我正在尝试自动填充视图中的单选按钮。该值实际上保存在数据库中。

这是我的代码:

<input type="radio" id="${field.id}" name="${field.name}" class="${field.errorClass}" value="1" />Yes
<input type="radio" id="${field.id}" name="${field.name}" class="${field.errorClass}" value="0" />No

但是,当我编辑记录时,Play Framework不会自动选择单选按钮。 我怎么知道为什么?

请帮忙。感谢。

1 个答案:

答案 0 :(得分:0)

<input type="radio" id="${field.id}" name="${field.name}" class="${field.errorClass}" value="1" />Yes

在您想要在开始时选择的单选按钮上使用代码中的checked属性。

<input type="radio" id="${field.id}" name="${field.name}" class="${field.errorClass}" value="1" checked />Yes