我有以下WCF方法
[OperationContract]
[WebInvoke(Method = "POST")]
public string HelloWorld(string stest)
{
return stest.ToString();
}
我有一个jQuery Ajax客户端代码,如下所示
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: '../../Service.svc/HelloWorld',
data: { 'stest': 'testdata' },
dataType: 'json',
success: function (resp) {
},
error: function (error)
{
alert(error);
}
});
当ajax调用HellowWorld方法时,获取
错误NetworkError:500内部服务器错误。
我如何从jquery ajax调用wcf Post方法。