gpt4 book ai didi

spring - 如何在 Thymeleaf 中设置默认选中的单选按钮

转载 作者:行者123 更新时间:2023-12-04 01:26:54 24 4
gpt4 key购买 nike

我有一组 3 个单选按钮。用户只能选择 3 个中的 1 个。我想将一个单选按钮设置为默认值。我试过这段代码,但 checked 属性似乎被忽略了。

    <div>
<input type="radio" th:field="*{genre}" th:value="Strategy" checked="true">
<label th:for="${#ids.prev('genre')}">Strategy</label>
</div>
<div>
<input type="radio" th:field="*{genre}" th:value="RPG">
<label th:for="${#ids.prev('genre')}">RPG</label>
</div>
<div>
<input type="radio" th:field="*{genre}" th:value="Stealth">
<label th:for="${#ids.prev('genre')}">Stealth</label>
</div>

public class Game
{
private String genre;
//Constructor
//Getter & Setter
}

最佳答案

在您的 Controller 中,将 Game 添加到模型中时设置 genre = "Strategy"

关于spring - 如何在 Thymeleaf 中设置默认选中的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52410559/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com