是否可以从通用对象列表中生成 Web 应用程序中的表单字段?
情况是这样的: 我们希望有一个搜索页面,它接受属性对象的有序列表,并根据它们的“类型”(文本输入、下拉列表、复选框)以适当的方式生成和显示它。我们还需要处理这些字段的值以便过滤结果。我不知道如何实现这一目标,有什么想法/解决方案吗? 这是一个由 struts2 支持的 java web 应用程序。
Here's the situation:
We want to have a Search page that takes in an ordered list of Attribute objects, and based on their 'type' (text input, dropdown, checkbox) generates and displays it in the appropriate manner. We'd also need to process the values for these fields in order to filter results. I'm at a loss for how we can accomplish this, any ideas/solutions?
This is for a java webapp backed by struts2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。我对struts不太熟悉,但我想这不会那么难。一些可以帮助您入门的伪 java 代码:
Yes, it's possible. I'm not familiar with struts, but I guess it can't be that hard. Some pseudo-java-code to get you started: