gpt4 book ai didi

java - problem with tag

转载 作者:行者123 更新时间:2023-11-29 06:17:48 24 4
gpt4 key购买 nike

我有一个带有 struts 标签的表单,如下所示。

<html:form styleId='catform' action='/cat/submit.html' method='post'>
<html:select property='catName' styleId='catName'>
<html:options collection='catList' property='category'>
</html:select>
</html:form>

在我的操作中,我将 catList 设置如下

 List <Category> catList = getCategoryList();
request.setAttribute("catList", catList);

这里的Category是一个以catName和catId为变量的类。

我收到一条错误消息,提示未找到属性类别的 getter。我错过了什么?

最佳答案

你需要放

<html:options collection='catList' property='catId' labelProperty='catName'>

struts 正在尝试获取 Category 实例的 category 属性

关于java - <html :select> problem with <html:options> tag,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4397905/

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