是否可以通过url从url获取页面html内容

时间:2019-04-24 14:25:48

标签: angular

我正在尝试从angular获取一些url html内容 但是我得到的是跨域请求被阻止

这是我要使用的代码。

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

我希望在控制台中找到

<html>
   ...
</html>

1 个答案:

答案 0 :(得分:1)

尝试一下:

 import { HttpHeaders } from '@angular/common/http';

 const httpOptions = {
 headers: new HttpHeaders({ =
 "Access-Control-Allow-Origin" : "*" 
 })}; `

this.http.get('http://www.google.com', httpOptions )

或为您的浏览器安装扩展名enable cors