gpt4 book ai didi

java - Struts2 标签单选按钮

转载 作者:行者123 更新时间:2023-12-01 23:55:35 24 4
gpt4 key购买 nike

我有一个循环遍历对象的迭代器。

        <s:iterator value = "choices" status = "key">
<s:set var = "test" value ="%{#key.index}"/>
<input type = "radio" name="choices[{key.index}].answer" />
<s:textfield name = "choices[%{#key.index}].value" value = "%{choices[%{#key.index}].value}"/>
<br>
</s:iterator>

其中 answer 是一个 boolean 值,我尝试通过单选按钮进行设置。

但问题是,在生成的 html 上,有单选按钮。是这样的

<input type = "radio" name="choices[%{#key.index}].answer" />

它没有索引/索引。它只给了我 %{#key.index}

最佳答案

你必须使用属性标签来获取实际值

<input type = "radio" name="<s:property value='%{choices[#key.index].answer}' />" />

最好使用struts标签库的radio标签,像这样

<s:radio name="choices[%{#key.index}].answer" / >

关于java - Struts2 标签单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15672517/

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