Skip to content Skip to sidebar Skip to footer

Ember 3.2.2 Not Routing Request To .NET Core 2.1 JSON Web API

I am new to using Ember and have been following an online video tutorial (see weblink below, though its dated as it uses .NET Core 1.0) that demonstrates how to setup a JSON API ba

Solution 1:

Do you run ember serve with the proxy parameter pointing to your backend?

Try to run this in your terminal:

ember s -pr=http://localhost:5000

then your requests should go to the right endpoint.


Solution 2:

I found the problem. I needed to setup CORS.


Post a Comment for "Ember 3.2.2 Not Routing Request To .NET Core 2.1 JSON Web API"