<html:select property="Weapon">
<html:options collection="WeaponList" property="weaponIDPK" labelProperty="weaponName" />
</html:select>
字符串
我正在创建一个下拉列表来显示Struts中的不同武器,我得到了这个错误。
你能告诉我缺少的部分是什么吗?或者可能的错误?我需要修复我的操作文件吗?
我在这一部分有问题
collection="WeaponList"
型
1条答案
按热度按时间doinxwow1#
S2:
缺少的部分是
WeaponList
,它应该命名为weaponList
,并通过普通的JavaBean风格的gettergetWeaponList
在操作中公开。S1:
该集合需要在
ActionForm
中可用。或者:
JavaScript应该遵循标准的JavaBean约定,例如,出于各种原因,第一个字母应该小写。