0

有人可以看看以下内容并告诉我我的服务器没有收到来自我的 ajax 的任何调用吗?警报弹出但对服务器没有任何影响??

JSP代码:

<%@ 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>

添加.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); 
            }
        });
    }  
4

3 回答 3

2
url : contexPath + "/service/employee",

你有没有定义的机会contexPath

于 2012-06-08T14:59:30.700 回答
0

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

url : contexPath + "/service/employee",

编辑:看看你在哪里得到上下文,这会起作用:

url : "<%=request.getContextPath()%>/service/employee",
于 2012-06-08T15:00:06.067 回答
0

其他两个答案都是有效的。但是根据我的说法,在 jsp 页面中使用 scriptlets 是一件坏事。

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

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

希望这对您有所帮助。干杯。

于 2012-06-09T08:23:14.400 回答