[Vuejs]-My requestcall from VueJS Frontend to C# API wont show anything in body

1👍

The problem is the no-cors mode in your http request. This results in an opaque request, which means you get a response, but you cannot use the data. You need to use cors and set the response headers in your backend accordingly.

Leave a comment