郵便でデータを送信するにはどうすればよいですか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 の場合は機能しますが、データを送信したい場合は機能しません。