2011年1月26日 星期三

struts 2 首頁

如題,想要在首頁就使用 structs 2 定義的頁面 是有點問題,會顯示不出來, 網路上搜尋 struts2 index.action 就有很多結果

目前還沒全部看懂,限介紹一個簡單的方法,就是先建一個 假的首頁 ,在利用 location.href 的方式轉到真正的首頁

入以下的 index.htm


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<title>index</title>

<SCRIPT>

function Init(){
location.href= "index.action ";
}
</SCRIPT>
</head>
<body onload="Init()">

</body>
</html>



為何要那樣麻煩,在我的應用是為了要支援多國語言的首頁.

沒有留言: