Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想得到一个我在 JSP 中搜索的变量,像这样
<s:textfield value="<%=request.getParameter("id")%>" />
如何getParameter()在 Struts 2 中使用标签?
getParameter()
尝试
<s:textfield value="%{#parameters.id}" />
struts 标签属性中不允许使用 scriptlet 和 JSTL EL。使用 OGNL。