how to set headers to application/json in angular2

前端 未结 5 1188
难免孤独
难免孤独 2021-01-17 03:00

I am trying to send HTTP post request in Angular2 but not able to set headers to content type application JSON.

My code is:

login(url,postdata)
{
            


        
5条回答
  •  轮回少年
    2021-01-17 03:40

    Try this code:

    private _getHeaders():Headers {
       let header = new Headers({
         'Content-Type': 'application/json'
       });
    
       return header;
    }
    
    
    
    public login(url, postdata){
       let options = new RequestOptions({
          headers: this._getHeaders()
       });
       return this.http.post(url, JSON.stringify(postdata),options).map(res => res.json());
    }
    

提交回复
热议问题