Решение Chrome Preflight - PullRequest
0 голосов
/ 27 июня 2019

Для Chrome Preflight (OPTIONS) верните http-код 200, dropzone не выполняет перенаправление, изменение заголовков - решение


var myDropzone = new Dropzone('.dropzone', {
    //...
    headers: {
        'Authorization': authorizationHeader,
        // remove Cache-Control and X-Requested-With
        // to be sent along with the request
        'Cache-Control': null,
        'X-Requested-With': null
    }
});

...