使用HttpClient通过HTTP GET请求请求整页

时间:2017-10-19 09:35:06

标签: angular

我正在尝试使用HttpClient模块请求整个html页面。 这是我的代码:

this.http.get('http://google.com')
  .subscribe( data => {
    console.log(data);
  });

这是我在chrome网络标签中看到的内容 enter image description here 这是我得到的错误。 enter image description here 我该怎么做呢?

1 个答案:

答案 0 :(得分:0)

尝试使用.jsonp()代替.get(),它应该可以防止这种(非常常见的)CORS问题。