普通标签如何使用OGNL表达式
例如<s:inputtype="text"name="username"value="username">以上代码可以通过action中的username属性传递过来,那...
例如
<s:input type="text" name="username" value="username">
以上代码可以通过action中的username属性传递过来,
那么如果换成普通的标签可以这样写吗?
<input type="text" name="username" value="username">
其中value=里面的ognl表达式还可以取到action中username属性的值吗?
如果不能,应该如何书写呢?
另外,请顺便讲解一下普通标签中使用ognl表达式获取request、session、application中的数据,
万分感谢!! 展开
<s:input type="text" name="username" value="username">
以上代码可以通过action中的username属性传递过来,
那么如果换成普通的标签可以这样写吗?
<input type="text" name="username" value="username">
其中value=里面的ognl表达式还可以取到action中username属性的值吗?
如果不能,应该如何书写呢?
另外,请顺便讲解一下普通标签中使用ognl表达式获取request、session、application中的数据,
万分感谢!! 展开
2个回答
展开全部
普通标签也是可以的。
里面的ognl表达式可以取到action中username属性
<s:setvalue="#session['pt']"var="pt"/>//取别名
<s:propertyvalue="#pt.name"/>//输出
//'pt'是你存入session的name;
<input type="text" name="username" value="#session['pt'].name">
<input type="text" name="username" value="#request['pt'].name">
<input type="text" name="username" value="#application['pt'].name">
里面的ognl表达式可以取到action中username属性
<s:setvalue="#session['pt']"var="pt"/>//取别名
<s:propertyvalue="#pt.name"/>//输出
//'pt'是你存入session的name;
<input type="text" name="username" value="#session['pt'].name">
<input type="text" name="username" value="#request['pt'].name">
<input type="text" name="username" value="#application['pt'].name">
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询