标签: angular
我正在尝试使用HttpClient模块请求整个html页面。 这是我的代码:
HttpClient
this.http.get('http://google.com') .subscribe( data => { console.log(data); });
这是我在chrome网络标签中看到的内容 这是我得到的错误。 我该怎么做呢?
答案 0 :(得分:0)
尝试使用.jsonp()代替.get(),它应该可以防止这种(非常常见的)CORS问题。
.jsonp()
.get()