spring mvc +ajax 请求发送不到控制层
如题。我用了spring mvc + ajax的形式搭了一个web工程。
在webcontent目录下有index.jsp文件,该文件的请求是通过一个js发送的,该js主要信息如下:
jQuery.ajax({ async : false, type : "POST", url : "login/checkLogin.html", data : { 'username':username, 'password':password }, dataType : "json", error: function(data){ alert("error!!!"); }, success: function(data) { alert("now we success.."); } });