Struts2中的变量声明

发布于 2024-10-22 20:55:23 字数 29 浏览 2 评论 0原文

Struts2中如何声明变量并为该变量赋值?

How to declare a variable and assign value to that variable in Struts2?

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

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

发布评论

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

评论(3

扶醉桌前 2024-10-29 20:55:23

使用 set 标签:用

<s:set var="myVar">hello</s:set>

以下方式读取 var:

<s:property value="#myVar"/>

另一个例子:

<s:set name="personName" value="person.name"/>
Hello, <s:property value="#personName"/>. How are you?

其中 person 是值堆栈中的一个 bean

Use the set tag:

<s:set var="myVar">hello</s:set>

read the var with:

<s:property value="#myVar"/>

Another example:

<s:set name="personName" value="person.name"/>
Hello, <s:property value="#personName"/>. How are you?

where person is a bean in your value stack

软糖 2024-10-29 20:55:23

您不必在 JSP 中声明变量。在您的 Action 中执行此操作并创建一个 getter,以便您可以从显示操作输出的 JSP 访问它。

You shouldn't have to declare variables in JSPs. Do it in your Action and create a getter so you can access it from the JSP showing the action's output.

乖乖公主 2024-10-29 20:55:23

在 struts2 中,我们有值堆栈的概念,在请求处理期间,Struts2 框架会将操作推送到值堆栈的顶部,并且其属性(变量)将像在其顶部一样工作。

您只需要为变量提供 getter 和 setter,然后您就可以使用 OGNL 访问 struts2 中的值(输入/输出)。OGNL 是一种与 Struts2 集成的表达式语言,它能够从值堆栈中引用值,并且还可以为您进行数据转换(自定义类型除外)

Well in struts2 we have concept of value stack and during request processing Struts2 framework will push the action on the top of value stack and its properties (Variable) will work as they are on the top of it.

all you need to have getter and setter for your variable and you can than access values both (in/out) in struts2 with OGNL.OGNL is an expression language integrated with Struts2 which is capable of refereeing values from the value stack and also will do the data conversion (except custom type) for you

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