web-dev-qa-db-ja.com

Spring Frameworkのパラメータを使用してajaxリクエストを送受信するにはどうすればよいですか?

Ajaxでリクエストを送信しようとしていますが、ステータスが400 bad requestです。どのような種類のデータを送信する必要があり、コントローラーでデータを取得する方法は?私はリクエストがうまくいくと確信していますが、パラメータが間違っているだけです

jsp

<script type="text/javascript">

    var SubmitRequest = function(){
        $.ajax({
                url : "submit.htm",
                data: document.getElementById('inputUrl'),
                type: "POST",
                dataType: "text",
                contentType: false, 
                processData: false,
                success : 
                    function(response) {
                        $('#response').html(response);
                    }
        });
    }
    </script>

コントローラ

@RequestMapping(value = "/submit", method = RequestMethod.POST)
public @ResponseBody
String Submit(@RequestParam String request) {
    APIConnection connect = new APIConnection();
    String resp = "";
    try {
        resp = "<textarea  rows='10'cols='100'>" + connect.doConnection(request) + "</textarea>";
    } catch (Exception e) {
        // TODO Auto-generated catch block
        resp = "<textarea  rows='10'cols='100'>" + "Request failed, please try again." + "</textarea>";
    }
    return resp;
}
11
Bboy820602

Ajaxの投稿リクエストを送信するには、これを使用できます:

$.ajax({
     type: "POST",
     url: "submit.htm",
     data: { name: "John", location: "Boston" } // parameters
})

また、Spring MVCでは、コントローラー:

@RequestMapping(value = "/submit.htm", method = RequestMethod.POST,produces = MediaType.APPLICATION_JSON_VALUE)
public @ResponseBody
String Submit(@RequestParam("name") String name,@RequestParam("location") String location) {
    // your logic here
    return resp;
}
31
Pracede