在 JSP 中获取通过 jQuery ajax POST 传递的多值参数
在另一个问题中,提供了以下代码作为通过 ajax POST 发送复选框列表的方法:
var data = { 'user_ids[]' : []};
$(":checked").each(function() {
data['user_ids[]'].push($(this).val());
});
$.post("ajax.php", data);
我有一个 JSP 页面,我想在其中解析 data
中的值数据。数据将采用什么格式(即字符串或数组)?我该如何解析它?
谢谢!
In another question, the following code was offered as a way to send a list of checkboxes via ajax POST:
var data = { 'user_ids[]' : []};
$(":checked").each(function() {
data['user_ids[]'].push($(this).val());
});
$.post("ajax.php", data);
I have a JSP page in which I would like to parse the value data in data
. What format would the data be in (i.e. string or array)? How can I parse it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[]
request.getParameterValues("user_ids")
获取值[]
request.getParameterValues("user_ids")