0
<html>

<body>
    <form method="POST">
        <label>username</lable>
            <input id="username" name="username" type="text">
            <label>emailid</lable>
                <input id="emailid" name="emailid" type="text">
                <button id="enter" type="submit">submit</button>
    </form>
    <script type="text/javascript">
        $(document).ready(function () {
            var userName = $("#username").val();
            var emailId = $("#emailid").val();
            $($enter).click(function () {
                $.ajax({
                    type: 'POST',
                    url: ".....rest service url....",
                    dataType: JSON,
                    data: {
                        "UserName": userName,
                        "EmailId": emailId
                    },
                    success: function (data) {
                        alert("success");
                    }
                    error: function (e) {
                        alert("error" + e)
                    }
                });
            });
        });
    </script>
</body>

</html>

我正在尝试在需要 JSON 响应的休息服务中发布表单字段。我收到警告错误消息(对象对象)

我不知道错误在哪里。

4

3 回答 3

0

首先改变这个 $($enter).click(function to $("#enter").click(function () { 你确定你为这个任务编写的服务是一个邮政服务吗……有时我会犯错误,比如发布数据并为获取数据编写服务。如果你能展示你的服务结构,这将有助于拥有一个更好的洞察力。

于 2013-10-21T08:52:15.183 回答
0
$($enter).click(function () {

这部分代码看起来无效,请为 click 函数提供正确的选择器。

于 2013-10-21T08:42:13.760 回答
0

您可以尝试 $.post 而不是 $.ajax

$.post( "your url",{ UserName: userName, EmailId: emailId }, function( data ){
alert("Success");
});

只需确保您传递的参数与您的 REST 服务相匹配。

于 2013-10-21T07:48:47.890 回答