为什么Ajax没有发布到服务器?

时间:2012-06-08 14:56:25

标签: javascript ajax spring-mvc

有人可以查看以下内容并告诉我我的服务器没有从我的ajax接到任何电话吗?警报弹出但服务器没有任何内容??

JSP CODE:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>This is a project to show how to use RESTful</title>
</head>
<body>

<script src="<%=request.getContextPath()%>/js/jquery.js"></script>
<script src="<%=request.getContextPath()%>/js/add.js"></script>


<H1>Add Employee</H1>

<p>
<form name="htmlform">
<table border=1>
    <thead><tr>
        <th>ID</th>
        <th>Name</th>
        <th>Email</th>
    </tr></thead>

    <tr>
        <td><input  type="text" name="ID" maxlength="5" size="3"></td>
        <td><input  type="text" name="Name" maxlength="10" size="10"></td>
        <td><input  type="text" name="Email" maxlength="10" size="10"></td>
    </tr>

</table>
<input type="button" value="Save Employee" onclick="doAjaxPost();" />
<p>
<p>
</form>
[<a href="http://localhost:8080/RESTful/service/employees">List all Employees</a> | <a href="add.jsp">Employee Form Test</a>]


</body>
</html>

ADD.JS代码:

function doAjaxPost() {  

    alert("doAjaxPost called");

       $.ajax({
            contentType : "application/json",
            dataType : 'json',
            type : "PUT",
            url : contexPath + "/service/employee",
            data : $(this).serializeObject(), 

            success : function(data) {
                alert("Thanks for submitting.  \n\n" + response.result);
               // response
            },
            error : function(request, status, error) {
                   alert('Error: ' + e); 
            }
        });
    }  

3 个答案:

答案 0 :(得分:2)

url : contexPath + "/service/employee",

您是否有机会定义contexPath

答案 1 :(得分:0)

你在行中错误拼写contexPath的任何机会(假设contextPath都在某处定义):

url : contexPath + "/service/employee",

修改: 看看你获得上下文的位置,这可行:

url : "<%=request.getContextPath()%>/service/employee",

答案 2 :(得分:0)

其他答案都有效。 但据我说,在jsp页面中使用scriptlet是件坏事。

而不是你可以将值“/ service / employee”作为参数传递给url:。因为如果你有正确的映射或网址,那么它只会将此值附加到此页面上的当前网址,它将执行它。

我在我的应用程序中使用了它,并且它的工作非常好。

希望这会对你有所帮助。欢呼声。