var vote = new Array();
$("input[name=‘option_name‘]").each(function(i){
if($(this).val()!=null&&$(this).val()!=‘‘){
vote.push($(this).val());
}else{
vote=null;
}
});
$.ajax({
type : ‘post‘,
data : {
sectionCode:$("#sectionCode").val(),
title:$("#title").val(),
imageIds:id,
content:content,
location:$("#location").val(),
showId:idList,
isAllowEditor:isAllowEditor,
showType:contentType,
question:$("#problem").val(),
questionType:questionType,
vote:vote,
HasVideo:1
},
traditional: true,
});
后台接收 public String addTouGao(AddNews newsSubmission,String[] vote,NewsBasic basic){