Struts中如何显示成功消息?
我们可以通过执行actionErrors.add(key, new Actionmessage("string")), addErrors(request, actionErrors);来显示Struts中的错误。 然后将其输出到 JSP 页面中
我想知道,如何在 Struts 中输出成功消息? 你通常/传统上是怎么做的?
we could display errors in Struts by doing actionErrors.add(key, new Actionmessage("string")), addErrors(request, actionErrors); and then outputting it into a JSP page via
I'm wondering, how do I output success messages in Struts? How do you normally/conventionally do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Struts 1 上,您可以使用 ActionMessage 实例来表示要在 JSP 上显示的消息
“message1”和“message2”是资源属性文件的键。 与 ActionError 处理非常相似
在 JSP 上显示消息与操作错误类似,但必须包含属性“message”
在本例中,消息存储为属性请求。 如果您想控制属性名称,您可以指定任何属性名称。
现在消息存储在请求属性“appMessage”下。 例如,如果您想在 JSP 上使用 JSTL 标记而不是 Struts 标记,那么设置自定义属性名称可能会很有用。
另外,您可以在会话范围内保存操作消息。
您可以使用此功能在用户会话中显示粘性消息,例如用户全名。
On Struts 1 you can use ActionMessage instances to represent a message to be displayed on a JSP
"message1" and "message2" are keys for you resources property file. Very similar to ActionError handling
Displaying the messages on JSP is similar to action errors, but you must include the property "message"
In this example the messages were stored as attribute requests. If you want to have control over the attribute name you can specify any attribute name
Now the messages are stored under the request attribute "appMessage". Setting a custom attribute name may be useful if you want to use JSTL tags instead of Struts tags on JSP for example
Additionally you may save action messages on session scope.
You can use this feature to show sticky messages over user session, such as user full name for example.
如果您使用的是 Struts2,您应该能够使用 addActionMessage 而不是 addActionError。
http://struts.apache。 org/2.0.14/struts2-core/apidocs/com/opensymphony/xwork2/ValidationAwareSupport.html
您的帖子缺少您在 JSP 中放入的内容,但如果您添加操作消息,则可以使用 < code>标签来显示您添加的内容。
http://struts.apache.org/2.0.14/docs/actionmessage。 html
If you're using Struts2, you should be able to use addActionMessage instead of addActionError.
http://struts.apache.org/2.0.14/struts2-core/apidocs/com/opensymphony/xwork2/ValidationAwareSupport.html
Your post is missing what you were putting in your JSP, but if you add an action message, you can use the
<s:actionmessage/>
tag to display what you added.http://struts.apache.org/2.0.14/docs/actionmessage.html