我在js文件中使用ajax post param:
var parData = {"code":_code, "filetype":_type, "reportParam":par_str, "uuid":uuid};
$.ajax({
url: _url,
type: "POST",
data: parData,
dataType: 'binary',
success: function(result) {
//called when successful
}
});
在jsp文件中,我使用request.getParameter但它返回null
String uuid= request.getParameter("uuid");
请帮助我! 谢谢!