JavaWeb servlet 接收ajax数组

servlet无法接收ajax数组

var ids = ["1", "2", "3"];
$.ajax({
                    url: url,
                    dataType: "json",
                    traditional: true,
                    type: "POST",
                    data: {
                        ids: ids
                    },

重点在于:

    traditional: true,

它可以阻止jQuery对数组的深度序列化,在servlet下使用

String ids[] = request.getParameterValues("ids")

这就是可以解决ajax的数组无法传递到servlet的方法

你可能感兴趣的:(javaweb)