GET request working on postman but not in browser
问题 I have encountered a strange issue with a GET request that I am stuck on. I am calling a GET request from my ASP.Net application that works fine in postman but does not hit my userGETReq.onload. function getUser(username){ userGETReq.open("GET", userURL + "/" + username); userGETReq.send(); userGETReq.onload = () => {if(userGETReq.status === 200){//cool stuff }} I am running on a localhost in the browser - the function to start this is being called from a form that returns false. <form