Отправить тип контента False с ARC
Как я могу отправить этот запрос в ARC:
$.ajax({
url: url,
data: formdata,
contentType: false,
processData: false,
type: 'POST',
cache: false,
error: function(xhr, status, error) {
//window.Continue();
alert(error);
},
success: function(response) {
//window.Continue();
alert(response);
}
});
Я не могу установить Content-Type false или сделать запрос без Content-Type в ARC.