使用 JQuery ajax post 使用 WCF / REST 服务
我正在尝试使用 $.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我为您准备的博客文章:使用 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