Помогите разобраться с кроссдоменными запросами.
Есть урл -
eportal.com.ua/admin.php?start=1&count=10&brand=brand1
Делаю GET запрос
$.ajax({
type: "GET"
url: @.url
beforeSend: ->
$('.content-spinner').show()
complete: ->
$('.content__spinner').hide()
success: (data)=>
@.needfullInfo = $.map(data, (item)->
{
id: item.ID
name: item.NAME
price: item.PRICE
brand: item.BRAND
desc: item.DESCRIPTION
img_url: item.IMG
img2: item.IMG2
weight: item.WEIGHT
volume: item.VOLUME
}
)
@.attachTemplate()
return
error: =>
$('.content__spinner').hide()
errorPage = '../../errorPage.html'
@.container.load(errorPage)
})
выдает ошибку
XMLHttpRequest cannot load http://eportal.com.ua/admin.php?start=1&count=10&brand=brand1.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://192.168.0.100:3000' is therefore not allowed access.
Сделал json файл с ответом сервера, положил в проект. С него все норм достает, без ошибок.
На стороне клиента можно что-то сделать или только "там" что-то менять нужно?