在Java中对Stripes框架的Ajax调用导致一个空的请求体

时间:2013-04-22 20:31:31

标签: java javascript jquery ajax stripes

环境:Eclipse运行Tomcat v7.0,使用Stripes框架进行Java,并通过JQuery ajax调用提交服务。

Javascript:

jQuery( function(){
jQuery('#testForm').submit( function(e) {
    e.preventDefault();

    var dataString = jQuery('#testInput').val();  //  Pulled from a textarea for testing purposes.
    var urlString = jQuery('#urlDropdown').val();  //  Pulled from a dropdown for testing purposes.
    if( (jQuery('#urlId') != "" )   &&
        (!isNaN(parseInt( jQuery('#urlId').val() )) )   ){  //  Pulled from an input type=text for testing purposes.
        urlString += '?id=' + parseInt( jQuery('#urlId').val() );
    }
    alert("urlString:  " + urlString);
    jQuery.ajax({  
        type: "POST",  
        url: urlString,
        data: dataString,  
        dataType:  'json',
        success: function( returnData ) {  
            jQuery('#content').html(JSON.stringify(returnData));
        },
        fail: function( returnData ) {  
            alert("FAIL");
        }
    });  
});
});

条纹拦截器:

@Before(stages=LifecycleStage.BindingAndValidation, on={"setClient"})
private Resolution intercept() {
    String rbody = getRequestBody();
    log.info("BODY: " + rbody);

    this.setBody( rbody );

    return null;
}

正在使用的getRequestBody方法:

protected String getRequestBody(){
    StringBuffer body = new StringBuffer();
    String line = null;
    try {
        BufferedReader reader = getContext().getRequest().getReader();
        while ((line = reader.readLine()) != null)
            body.append(line);
    } catch (Exception e) {
        log.error("Buffered Reader Failed", e);
        e.printStackTrace();
    }

    log.info("BODY: " + body.toString());
    return body.toString();
}

我正在使用Firebug来测试输入,请求的帖子主体确实充满了肉质的json。

log.info调用输出一个完全空的字符串。如果我在getRequest上调用getContentLength(),它会告诉我内容具有适当的字符数。但内容本身就是空的。

我99.99%确定代码中没有其他地方正在使用Request正文。目前,这是我在Stripes框架中唯一的操作文件,因为我已经删除了每个其他文件。

不知何故,请求正文是完全空的。它应该是充满肉的json。帮助我,Stack Overflow,你是我唯一的希望!

1 个答案:

答案 0 :(得分:1)

感谢Stripes IRC频道的优秀人才,我有一个答案!我需要添加contentType: "application/json",,因为:

jQuery.ajax({  
    type: "POST",  
    url: urlString,
    contentType: "application/json",
    data: dataString,
    dataType:  'json',
    processData: false,
    success: function( returnData ) {  
        jQuery('#content').html(JSON.stringify(returnData));
    },
    fail: function( returnData ) {  
        alert("FAIL");
    }
});