如何从Ajax Post获取JSP文件中的参数

时间:2018-11-08 02:36:36

标签: ajax jsp servlets request

我在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");

请帮助我! 谢谢!

0 个答案:

没有答案