how to set headers to application/json in angular2

前端 未结 5 1158
难免孤独
难免孤独 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:39

    You should use code like this

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

提交回复
热议问题