如何通过以下方式发送数据xdr
:
[OperationContract(Name = "app")]
[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json,UriTemplate="app",BodyStyle=WebMessageBodyStyle.Wrapped, ResponseFormat=WebMessageFormat.Json)]
bool ApplyJob(T_JOB_APPLYER_Entity Applyer);
我尝试这样做但不起作用:
if (window.XDomainRequest) {
xdr = new XDomainRequest();
if (xdr) {
xdr.onload = function () {
CountWork($.parseJSON(xdr.responseText));
}
xdr.open("POST", url + "app", true);
var data = JSON.stringify({ Applyer: { APPLYER_EMAIL: "John"}});
xdr.send(data);
}
}
如果数据设置为空字符串或为空,它可以工作,但如果我想发送数据,它就不起作用。