我正在尝试通过 http 调用请求网页并收集数据。
我可以使用 chrome 插件避免跨域,但是当我发出请求时,响应始终为“null”。
如何在我的 Angular 应用程序中获取 html 页面作为 json 对象?
ngOnInit(): void {
// Make the HTTP request:
this.http.get('http://www.hurriyet.com.tr/gundem/').subscribe(data => {
this.results = data;
});
}