10

I'm trying to make a post call using HttpHeader in angular 6 And I set Content-Type to application/json. But the server get x-www-form-urlencoded instead of application/json for Content-Type.

service.ts

   
myFunction(id: string, name: string, fields: string[]) {
  const body = {
    id: id,
    name: name,
    fields: fields
  };
  let headers = new HttpHeaders();
  headers= headers.set('content-type', 'application/json');
  return this.http.post(this.URL , body, {headers});
}

component.ts

submit(){
  this.myService.myFunction(this.id, this.form.value.name,  
  this.form.value.fields).subscribe((res:any) => {
    console.log(this.form);
  }, error => {
    console.log(JSON.parse(error.error).errors);
  })
}

2 Answers 2

18

You need to set headers in option.

return this.http.post(this.URL , body, {headers : new HttpHeaders({ 'Content-Type': 'application/json' })});
Sign up to request clarification or add additional context in comments.

Comments

8

Just use append function to add new headers and finally set the headers on options

Try something like this,

let headers = new HttpHeaders();
headers= headers.append('content-type', 'application/json');
return this.http.post(this.URL, body, {headers : header});

If it doesn't work try to add header like this,

let headers = new HttpHeaders({'content-type': 'application/json'});

Hope it helps. Happy coding :)

1 Comment

I think it will be let headers and {headers: headers} or es6 {headers}

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.