0

我是阿贾克斯的新手。我正在尝试调用我的控制器方法,但从 Ajax 调用而不是调用我给出的 url.. 这里我的控制器方法和我的 jsp 文件中的 ajax 调用..

@RequestMapping(value = "/getdata", method = RequestMethod.POST)
public @ResponseBody String add(@RequestParam(value="userDetailObject", required=true) User_Details u,Model model) {
    System.out.println("In the controller method..");
    String result=null;
                result="From controller :"+u.getEmail();
                System.out.println("at controller .."+result);
    return result;
}

我的 Ajax 是

//script type="text/javascript" src="../jquery-1.4.4.js"

var jq = jQuery.noConflict();

        function getData() {
            alert("hello");
            // get the form values
        var email = $('#email').val();
        //  var education = $('#education').val();
            $.ajax({
                type : 'POST',
                dataType: 'json',
                url : "/SpringDemoSts/getdata",
                data : 'email=' + email,
                success : function(response) {
                    // we have the response
                    //$('#info').html(response);
                    $('#email').val(response);
                    //$('#education').val('');
                },
                error : function(e) {
                    alert('Error: ' + e);
                }
            });
        }
/script

我在这里做错了什么?

4

1 回答 1

0

ajax 中定义的 url:

/SpringDemoSts/getdata

与显示的请求映射中的不同

/getdata

并且参数称为 userDetailObject 并且您的 ajax 调用错误地定义了数据,您使用请求参数样式作为数据。实际上,您需要 json/a 普通原语或字符串。

于 2013-03-01T12:47:22.870 回答