是否可以在jsp scriptlet中访问struts2变量?
是否可以在jsp scriptlet中访问struts2变量?
如果我有 struts2 变量,例如
<s:set var="test" value="%{'true'}"/>
我可以在 JSP scriptlet 中使用变量“test”吗?
如果是。 这怎么可能?
谁能提供一些想法吗?
谢谢。
Is it possible to access struts2 variable in jsp scriptlet?
If I have struts2 variable like
<s:set var="test" value="%{'true'}"/>
Can I use variable "test" in JSP scriptlet?
If yes. How is it possible?
Can anyone give some idea about it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您甚至可以使用请求对象来获取操作变量。 例如,如果操作中有变量
String userName
,则可以使用You can even use the request object to get the action variable. For example, if you have a variable
String userName
in the action, you can use是的,
Yes,