就个人而言,我有一个模拟“地图”的功能,我在哪里添加“Key”菜单项和“Values”菜单子项。
此功能可在下面查看
var key;
var value;
var mapaDeListas = new Array();
$(".conteudoMenu a").click(function(){
key = $(this).parent(".conteudoMenu").parent("li").find(".itemMenu").attr("id");
value = $(this).attr("id");
Processar();
console.log(mapaDeListas);
});
var Processar = function() {
if (mapaDeListas[key] && $.inArray(value, mapaDeListas[key]) == -1 || mapaDeListas[key] && $.inArray(value, mapaDeListas[key]) != -1) {
// Checks if the key already exists from the "key" and if the value of "value" is present in the array
if (mapaDeListas[key].indexOf(value) == -1){
mapaDeListas[key].push(value);
}
}
else {
// Creates the array according to the value of the "key" and adds the value of "value"
mapaDeListas[key] = new Array();
mapaDeListas[key].push(value);
}
}
我想知道的是如何将Ajax中此函数的值传递给Servlet,并通过它们在java中组合Map。
我尝试通过Ajax发送此函数的值,如下所示,但无济于事
function loadQuery(){
if(inputMenu.length > 0){
$.ajax({
url: "assembles-query",
type: "POST",
data: {
"mapaDeListas[]" : mapaDeListas
},
//dataType: "json",
error:function(){
alert("ERRO MENU")
},
success:function(responseText){
$("textarea[id=assembleQuery]").text(responseText);
}
});
}
}
在Servlet中,尝试获得如下结果 String [] mapaDeListas = request.getParameterValues(“mapaDeListas []”);
但是,当我发送打印时,结果总是返回 null 。
有人请告诉我哪里错了,我应该怎样做才能正确传递这些值? 既然已经感谢大家的帮助了。
下面列出了如何存储结果。 http://bit.ly/V9oHsg
答案 0 :(得分:0)
我假设这是使用jQuery 1.4 - 然后使用$.ajax()
的traditional: true
参数
或全局设置:(from $.param()
docs)
从jQuery 1.4开始,
$.param()
方法递归地序列化深层对象,以适应现代脚本语言和框架,如PHP和Ruby on Rails。您可以通过设置jQuery.ajaxSettings.traditional = true;
来全局禁用此功能。