类似这种参数
$.ajax({
url: url+'PwOmMain/deleteByList',
async: false,
type: "POST",
dataType: 'json',
contentType: "application/json",
traditional:true,
data: JSON.stringify(ids),//ids为数组参数
success: function (data, status, xhr) {
parent.layer.closeAll('loading');
if(data.code==0){
parent.layer.msg('删除成功!', {icon: 1,time:2000,shade:0.2});
}else{
parent.layer.msg('删除失败!', {icon: 2,time:3000,shade:0.2});
}
},
error: function (xhr, status, error) {
}
});