Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

No 'Access-Control-Allow-Origin' header is present on the requested resource

Olá, Ao tentar acessar o meu backend, encontro o seguinte erro:

XMLHttpRequest cannot load https://meudomain.co.mz:8443/login?login=user&password=senha. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8100' is therefore not allowed access.

Alguém sabe como resolver?

1 resposta
solução!

Resolvido via ionic proxy.

No ficheiro ionic.config.json, adicionar:

"proxies": [
    {
      "path": "/api",
      "proxyUrl": "http://meudomain.co.mz:8081"
    }
  ]

Restart: ionic serve --lab

Referência: http://blog.ionic.io/handling-cors-issues-in-ionic/