$.ajax({
type: 'post',
url: '/TdxGridExample/Wcf/Service.svc/Add', //WCF的URL,/Add是指定该WCF的Add方法
contentType: 'text/json',
data: ’{"x":1,"y":2}‘,
success: function(msg) {
alert(msg);
}
});
注:contentType:类型必须设置为text/json,而不是'text/xml' 或 'text/html'
data,必须是json形式字符串:并且要对应后台WCF参数名:
WCF代码: