Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我<html:select>在我的一个jsp页面中使用了多项选择。为了存储选择,我应该在与此列表关联的表单 bean 中具有哪些变量?
<html:select>
直接来自文档:
此标记以两种模式运行,具体取决于多重属性的状态,这会影响您应该使用的关联属性的数据类型: 未选择 multiple="true" - 相应的属性应该是任何支持的数据类型的标量值。 选择了multiple="true" - 相应的属性应该是任何支持的数据类型的数组。
此标记以两种模式运行,具体取决于多重属性的状态,这会影响您应该使用的关联属性的数据类型:
(强调我的)