REST @FormParam值为null

时间:2015-06-16 06:38:02

标签: java rest form-parameter

我在html中有以下内容

<form name="myform" method="POST">
    <input type="text" id="products" name="products" />
</form>

function myForm() {
        var url = 'rest/products/details/';
        var formData = $("#myform").serializeArray();
        $.ajax({
        url: url,
        type: 'POST',
        contentType : "application/x-www-form-urlencoded",
        dataType: 'json',
            data: formData,
        success: function (data) {
            //callfunc(data);
        }
    });
}

在Java服务器端,我有以下

@POST
@Path("/details")
public List<Product> findProducts(@FormParam("products") String products) {
.....
.....

log.info("prod "+products); --> getting null

由于某种原因,即使我从html传递正确的值,产品也是null。这可能是什么原因?

3 个答案:

答案 0 :(得分:1)

function myForm() {
        var url = 'rest/products/details/';
        var formData = "products=asasa" ;
        $.ajax({
        url: url,
        type: 'POST',
        contentType : "application/x-www-form-urlencoded",
        dataType: 'json',
            data: formData,
        success: function (data) {
            //callfunc(data);
        }
    });
}

试试这个并删除@consumes注释。问题出在jquery的$("#myform").serializeArray()函数中。

答案 1 :(得分:0)

尝试Consumes注释

@POST
@Path("/details")
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public List<Product> findProducts(@FormParam("products") String products) {
.....
.....

答案 2 :(得分:0)

问题相当愚蠢,我使用的是名称而不是id,导致所有表单元素在服务器端获得null。我已经改为

<form id="myform" method="POST"> 它运作良好

然而 <form name="myform" method="POST">无效。