0
すべてが良いです - 私はこのような要求を送信するとき:Js cors。 no「をアクセス制御 - 許可 - 起源」
function toServer2(url, type, data, success) {
var XHR = ("onload" in new XMLHttpRequest()) ? XMLHttpRequest : XDomainRequest;
var xhr = new XHR();
xhr.open(type, url, true);
xhr.send();}
415応答 - 私はこのような要求を送信するとき:
function toServer2(url, type, data, success) {
var XHR = ("onload" in new XMLHttpRequest()) ? XMLHttpRequest : XDomainRequest;
var xhr = new XHR();
xhr.open(type, url, true);
xhr.send(data);} // data = "{'name': 'Ben', count: 12}"
いいえ「のアクセス-control-起源許可する - 私はこのような要求を送信するとき:
function toServer2(url, type, data, success) {
var XHR = ("onload" in new XMLHttpRequest()) ? XMLHttpRequest : XDomainRequest;
var xhr = new XHR();
xhr.open(type, url, true);
xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
xhr.send(data);} // data = "{'name': 'Ben', count: 12}"
私は英語を残しています –
灰色の質問 –
xhr.setRequestHeader( 'Content-Type'、 'application/json; charset = UTF-8 '); –