Answer the question
In order to leave comments, you need to log in
Ajax request in opencart on cyrillic domain in firefox?
Faced the problem only in firefox.
When I try to execute ajax, I get errors:
Запрос из постороннего источника заблокирован: Политика одного источника запрещает чтение удаленного ресурса на http://мойдомен.рф/index.php?route=checkout/cart/add. (Причина: отсутствует заголовок CORS 'Access-Control-Allow-Origin').
Запрос из постороннего источника заблокирован: Политика одного источника запрещает чтение удаленного ресурса на http://мойдомен.рф/index.php?route=checkout/cart/add. (Причина: не удалось выполнить запрос CORS).
$.ajax({
url: 'index.php?route=checkout/cart/add',
type: 'post',
data: 'product_id=' + product_id + '&quantity=' + (typeof(quantity) != 'undefined' ? quantity : 1),
dataType: 'json',
/* код */
});
$.ajax({
url: 'http://мойдомен.рф/index.php?route=checkout/cart/add',
type: 'post',
data: 'product_id=' + product_id + '&quantity=' + (typeof(quantity) != 'undefined' ? quantity : 1),
dataType: 'json',
/* код */
});
http://xn--d1acklchcc.xn--p1ai/
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question