首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

struts框架 taglib 之logic:present跟logic:notPresent

2012-08-21 
struts框架 taglib 之logic:present和logic:notPresentlogic:present及logic:notPresent判定指定的htt

struts框架 taglib 之logic:present和logic:notPresent
<logic:present>及<logic:notPresent>判定指定的http请求,cookie,header,安全角色,用户,javabean是否存在,根据判断结果来控制内容的输出,标签属性分别为:

cookie:指定的cookie是否存在

header:指定的http请求的header是否存在

role:判断当前通过权限的用户是否具有指定的安全角色.多个安全角色之间以逗号隔开

user:判断当前通过权限验证的用户是否拥有指定用户名

parameter:判断指定的请求参数(相当于getParameter==null)是否存在

name:判断指定的javaBean(属性,attribute)是否存在

scope:设置http请求范围,貌似只能是request或session(??未确定),设为session的时候,包括session,request范围的JavaBean,缺省下好像是session的

proerty:同时设置name与property,判定该名称的JavaBean的property指定的属性是否存在,并且是否为null

例如代码:

<%request.setAttribute("nothing","nothing");%><logic:present name="nothing" scope="request">forever love;</logic:present>

notPresent:标签例如:
<logic:present name="nothing" property="someProperty">String...................................................................................<logic:present name="nothing" property="someProperty"/>

Header判断:
<logic:present header="user-agent">Yep,we got a user-agent header.</logic:present>

热点排行