gpt4 book ai didi

javascript - Ajax不调用WCF服务

转载 作者:行者123 更新时间:2023-12-03 11:24:09 24 4
gpt4 key购买 nike

我已在 IIS 上成功托管服务。

确保应用程序正在运行。

我已通过 ajax 调用此服务:

 var parameters = {

'EmailID':EmailID,
'Password':Password
};

$.ajax({
url: "http://localhost:85/MobileECommerceTesting/Service1.svc/validateLogin",
data: JSON.stringify(parameters),
contentType: "application/json; charset=utf-8",
dataType: "json",
type: "POST",
cache: false,
success: function (Data) {
alert("asdsad");
},
error: function () {
alert("Error in Saving.Please try later.");

}
});

但它没有调用该服务。

可能是什么问题?

编辑:

enter image description here

编辑2:

网络选项卡:

enter image description here

最佳答案

看看这个问题:

the content type 'application/json; charset=utf-8' was not the expected type 'text/xml; charset=utf-8'

这可能与您的绑定(bind)有关,它不需要内容类型 application/json。您必须使用 webHttpBinding 来通过 WCF 创建“类似 REST”的服务。

关于javascript - Ajax不调用WCF服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26994440/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com