的问题标签

发布于 2024-10-06 15:47:58 字数 552 浏览 2 评论 0原文

我有一个带有 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。 我缺少什么?

I've a form with struts tags as below.

<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>

In my action I'm setting catList as below

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

here Category is a class with catName and catId as variables.

I'm getting an error which says no getter for the property category found.
What am I missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云朵有点甜 2024-10-13 15:47:58

您需要将

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

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

You need to put

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

struts is trying to get the category property of the Category instance

老子叫无熙 2024-10-13 15:47:58

您需要放置一个“集合”,这是在java标签之间完成的,如下所示:

collection="<%= myCollection %>"

或者使用“名称”和“属性”属性,如下所示:

name="mybean" property="beanPropertyWhichContainsTheCollection"

不要同时使用“属性”和“集合”属性。

You need to put either a "collection", which is done between java tags like this :

collection="<%= myCollection %>"

or to use the "name" and "property" attributes like this :

name="mybean" property="beanPropertyWhichContainsTheCollection"

Don't use both "property" and "collection" attributes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文