如何获取http状态值?

How to get the http satus value?

我正在尝试获取 http 状态的值 某种:

    export class StepsComponent implements OnInit {
        status: number;
    }

稍后在一个函数中:

    timer(){
        this.status = http.response.status;
    }

我不想捕获错误,因为我想在状态为200时显示一些东西,所以当它OK时..

感谢您的帮助!

如果您使用的是 angularV2,您可能想做类似的事情。

http.get(
    url,
    {observe: 'response'}
)
  .subscribe(response => {    
    // Access status:
    console.log(response.status);    
    // Access header:
    console.log(response.headers.get('Header-Name-To-Look-At'));
  });