Perché il mio cross-domain richiesta POST viene preflight con richiedere un OPZIONI?

StackOverflow https://stackoverflow.com/questions/3489631

  •  28-09-2019
  •  | 
  •  

Domanda

Secondo il Mozilla Developer Center HTTP controllo degli accessi articolo , cross-site POST le richieste possono essere "semplice" - cioè non richiedono la verifica preliminare -. se la richiesta del Content-Type è application/x-www-form-urlencoded

Non ricevo questo comportamento in Firefox, e non sto capire a tutti perché questo è così. Ecco il mio codice di installazione:

function makeXDomainRequest(url, method, data) {
    var req =
        typeof XDomainRequest !== "undefined" ?
        new XDomainRequest() : new XMLHttpRequest();

    req.open(method || "GET", url, true);

    if (typeof req.onload !== "undefined") {
        req.onload = onResponseLoad;
        req.onerror = onRequestError;
    } else {
        req.onreadystatechange = onRequestStateChange;
    }

    if (data && typeof req.setRequestHeader === "function") {
        req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    } else {
        // no way to set Content-Type req header in IE's XDomainRequest:
        // http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx
    }

    req.send(data || null);
}

function onResponseLoad() {
    alert("Response!\n" + this.responseText);
}

function onRequestError(args) {
    alert("Error!");
}

function onRequestStateChange() {
    if (this.readyState === 4) {
        if (this.status === 200) {
            onResponseLoad.apply(this);
        } else {
            onRequestError.apply(this);
        }
    }
}

Ed ecco il server che sto pinging:

// thanks to http://saltybeagle.com/cors/ for having this demo endpoint:
var URL = "http://ucommbieber.unl.edu/CORS/cors.php";

Ora, se faccio una semplice richiesta POST - con i dati inviati come application/x-www-form-urlencoded nel codice sopra - la richiesta è preflight in Firefox con richiedere un OPZIONI. Non è preflight in Chrome. Aprire Fiddler prima di eseguire questo per vedere di persona:

makeXDomainRequest(URL, "POST", "name=foobar");
// alerts "Response! Hello CORS [...] You sent a POST request. Your name is foobar"

Ecco le opzioni di preflight richiedere servizio Fiddler (avviso l'intestazione Access-Control-Request-Method: POST anche se ho specificato un presunto sicura Content-Type e nessun intestazioni personalizzate):

OPTIONS http://ucommbieber.unl.edu/CORS/cors.php HTTP/1.1
Host: ucommbieber.unl.edu
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Origin: http://localhost
Access-Control-Request-Method: POST

Che cosa sta succedendo? Questo è un bug in Firefox, o sto facendo qualcosa di sbagliato? Grazie!

È stato utile?

Soluzione

E 'infatti risultato essere un bug di Firefox. E 'finito per sempre fisso per FF4b6: https://bugzilla.mozilla.org/show_bug.cgi ? id = 588920

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top