非表示の入力フィールドの値を配列として取得し、それをSpring MVCコントローラーに渡すことは可能ですか?
function foo(){
var myArray = new Array();
myArray[0] = "Hello";
myArray[1] = "World!";
document.getElementById("hiddenInp").value=myArray;
}
そして、コントローラーで次のようなことを行います
@RequestMapping ...
public String test(HttpServletRequest request)
{
String[] myArray = request.getParameter("hiddenInp");
// Assuming that the name of the hidden input field is also hiddenInp
System.out.println(myArray[0] + myArray[1]);
...
}
連想配列を使用している場合はどうですか?インデックスがintではなくstringの場合