Reputation: 19
I wanted to fetch data from local IP with Angular framework by chrome browser. but chrome browser blocked this request. and I not found any solution for solve this problem . please help me
Upvotes: 1
Views: 465
Reputation: 69
That is CORS issue, you can set response header to allow cross-origin access
https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
Upvotes: 2