我们如何从ajax中获取变量作为Servlet中的request.getparameter?

最佳答案

您可以使用它。

使用查询参数。

function action(arg0) {

$.ajax({
    url: '/test',
    type: 'get'   // 'get' or 'post'
    data: 'arg0=' + arg0,  //variable you want to send.
    success: function(result) {
        console.log(result);
    }

}); }


在Servlet中

request.getParameter("arg0")

10-05 21:10