Struts2从jsp设置对象
我已查询数据库并在 Action 类中设置该对象,并将其设置回 jsp 以显示结果。现在我想要将相同的对象放入另一个或相同的操作类中。我该怎么做呢。
I have queried DB and set that object in Action class and set that back to jsp to display results. Now I want the same object into another or same action class. How do I do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也遇到了同样的问题并按以下方式实现。看看是否有用。
您必须使用转换技术来指定要在列表中存储什么类型的对象。然后我把它设置在jsp的隐藏字段中。然后我就可以在动作课上检索它。
http://struts.apache.org/2.0.14/docs/类型转换.html
I haev also faced same issue and implemeted in the following manner. find if it is useful.
You have use conversion technique to speficy what type of Object are you going to store in the list. Then i have set it in hidden feild in jsp. then i am able to retrive it in action class.
http://struts.apache.org/2.0.14/docs/type-conversion.html