如何通过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);
}
}
如果数据设置为空字符串或为null,则可以正常工作,但如果我想发送数据则不起作用。