這是我的jsp頁面:角色了request.setAttribute JSP
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Test EL</title>
</head>
<body>
<p>
<%
/* Creation */
String[] animals = {"dog", "cat", "mouse", "horse"};
request.setAttribute("animals" , animals);
%>
${ animals[2] }<br />
</p>
</body>
我不明白的是:什麼是指令的工具: 「request.setAttribut」,我已經有表格聲明,我不明白爲什麼當我刪除該指令,我不能得到動物[2]價值..我在這裏想念什麼?!
的「*着請詳細說明獲得動物[2]值*「。究竟發生了什麼? – 2015-03-25 02:35:20
我在瀏覽器中顯示空白屏幕 – 2015-03-25 02:37:46
我剛剛運行了您的代碼。我沒有看到任何錯誤。相反,它打印的是「鼠標」,這是實際的輸出。 – venky 2015-03-25 07:07:36