0

我想得到一个我在 JSP 中搜索的变量,像这样

<s:textfield value="<%=request.getParameter("id")%>" /> 

如何getParameter()在 Struts 2 中使用标签?

4

1 回答 1

1

尝试

<s:textfield  value="%{#parameters.id}" />

struts 标签属性中不允许使用 scriptlet 和 JSTL EL。使用 OGNL。

于 2013-09-14T21:05:33.767 回答