el表示式的基本使用:
格式: $
<%
// 往作用域中儲存資料
request.setattribute("name", "request");
string array = ;
map map = new hashmap();
map.put("key", "value");
pagecontext.setattribute("map", map);
student stu = new student("mary", "28");
session.setattribute("student", stu);
%>
使用el表示式取值:
// 取字串
$// 取陣列
// 取map集合
$// 取普通物件
$
總結:
如果取的數值是有下標例如array、list,則使用的方式取值,如果取的數值是無下標例如map、student,直接使用.的方式取值
ps:
在取值的時候可以省略pagescope等字首, 這時候會預設先從page開始找,遍歷四個作用域尋找相應的資料,例如直接 $
jstl表示式的基本使用:
EL JSTL和OGNL表示式
el expression language 是一門表示式語言,它對應 我們知道在jsp中,表示式會被輸出,所以el表示式也會被輸出。el表示式可在jsp中獲取域物件裡面的值。格式 例如 el一共11個內建物件,無需建立即可以使用。這11個內建物件中有10個是map型別的,最後乙個是pagecont...
C Lambda表示式基本用法
建立乙個匿名函式並執行。objective c採用的是上尖號 而c 11採用的是配對的方括號。例項如下 include using namespace std int main 我們也可以方便的將這個建立的匿名函式賦值出來呼叫 include using namespace std int main...
OGNL表示式的基本用法
s property的作用 匯入標籤庫 taglib uri struts tags prefix s 要想使用 ognl 表示式,需要借助 struts2 的標籤 屬性 value 取值是乙個ognl表示式。執行結果 此時瀏覽器不會有任何內容顯示 原因 這句話中有 ognlexpression 這...