struts ベースのプロジェクトで、JSP のリクエスト パラメータから文字列値を JavaScript 関数に渡そうとしています。コードは次のとおりです。
<%
String timeVal = "Not found";
if(request.getAttribute("myDate")!=null){
timeVal= (String)request.getAttribute("myDate");
}
%>
そして、それを関数にパラメーターとして渡します
<html:submit property = "save" styleClass = "button_c" onclick = "return SubmitPage('update', <%=timeVal %>)">Save</html:submit>
JavaScript 関数の場所
function SubmitPage(action, aa)
{
alert("Date is ...." + aa);
}
しかし、これを実行しようとすると、エラーが発生します
HTTP Status 400 - Request[/AMResourceLibraryListAction] does not contain handler parameter named ref
ホームページにメッセージあり。
Request[/AMResourceLibraryListAction] does not contain handler parameter named ref
前もって感謝します。
編集ここにスタックトレースがあります
[ERROR] DispatchAction - -Request[/AMResourceLibraryListAction] does not contain handler parameter named ref