使用 JQuery ajax post 使用 WCF / REST 服务

发布于 2024-10-22 18:56:39 字数 724 浏览 3 评论 0原文

我正在尝试使用 $.ajax 发布数据,但收到失败消息 400 错误。以下是代码:

 $.ajax({

                url: "http://192.168.1.9:150/Service.svc/usrregistration",
                type: "POST",
                // data: '{"Firstname":' + Firstname + ',"LastName:"'+LastName+'}',
                data: '{"Firstname":"rose"}',

                contentType: "application/json; charset=utf-8",
                dataType: "json",
                processdata: true,
                success: function (msg) {
                    alert(msg);

                    alert('Registerd successfully');
                },
                error: function (msg) {

                    alert('Faild'+msg.status);
                }

            });

I am trying to post the data usign $.ajax, but I am getting failure message 400 error. Following is the code:

 $.ajax({

                url: "http://192.168.1.9:150/Service.svc/usrregistration",
                type: "POST",
                // data: '{"Firstname":' + Firstname + ',"LastName:"'+LastName+'}',
                data: '{"Firstname":"rose"}',

                contentType: "application/json; charset=utf-8",
                dataType: "json",
                processdata: true,
                success: function (msg) {
                    alert(msg);

                    alert('Registerd successfully');
                },
                error: function (msg) {

                    alert('Faild'+msg.status);
                }

            });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心欲静而疯不止 2024-10-29 18:56:39

这是我为您准备的博客文章:使用 WCF 创建 REST 服务并使用 jQuery 进行使用

通过使用 WCF 的 REST 服务和使用 jQuery 进行消费,您可以轻松地找出问题,只需 2 或 3 分钟的步行时间

其他

使用 jQuery 调用 WCF 服务的步骤

使用Jquery/Javascript调用跨域WCF服务

here is my blog post for you : Create REST service with WCF and Consume using jQuery

REST service with WCF and Consume using jQuery by post you can figure out the problem easily its just 2 or 3 min walk though

Others

Steps to Call WCF Service using jQuery

Calling Cross Domain WCF service using Jquery/Javascript

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文