2

我正在尝试从 JSP(I-Frame)调用我的 Spring MVC 控制器并在浏览器上收到以下错误

400 Bad Request,The request sent by the client was syntactically incorrect ()

这是我向服务器发送请求的 JQuery 代码

jQuery("#login").live('click', function(e) {
        e.preventDefault();
           jQuery.ajax({
            url: "https://localhost:9002/myApp/springSecurity/login.json",
            xhrFields: {
                   withCredentials: true
                },
            type: "POST",
            crossDomain:true,
            data: jQuery("#loginForm").serialize(),
           contentType: "json",

            success: function(data, status) {
                alert(data);
                alert(status);
                if (data.loggedIn) {
                   // location.href = getHost() + '${ctx}/users';
                    //login_pannel

                } else {
                    loginFailed(data);
                }
            },
            error: loginFailed
        });

    });

这是我的控制器代码

@Controller
@RequestMapping("springSecurity/login.json")
public class SpringSecurityLoginController
{
@RequestMapping(method = RequestMethod.POST)
@ResponseBody
public SpringSecurityLoginStatus login(@RequestParam("j_username") final String username,
@RequestParam("j_password") final String password, final HttpServletRequest request, final HttpServletResponse response)
    {

    LOG.info("Starting login process");
    return springSecurityLoginService.login(username, password, request, response);
    }
}

在点击提交按钮时,我在服务器上没有收到任何错误,但是在查看浏览器控制台输出时,它向我显示以下错误

"NetworkError: 400 Bad Request - https://localhost:9002/myApp/springSecurity/login.json"

这是来自 Mozilla 响应标头的错误信息

the request sent by the client was syntactically incorrect ().

我不确定是什么导致了这种行为。此外,我正在使用 Spring 安全性来处理身份验证和授权。

编辑

我进行了更多调试,发现当我检查控制器的值时表单值没有提交给我的控制器,j_username并且j_password控制器中的 tey 为空。

我什至尝试过request.getParameter("param name");,但仍然有相同的值作为空值出现

4

1 回答 1

5

在您的 jQuery 中,尝试将“contentType”更改为“dataType”(更多信息在这里)。

于 2012-06-15T12:39:57.677 回答