Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

typescript http get attach headers

const headerDict = {
  'Content-Type': 'application/json',
  'Accept': 'application/json',
  'Access-Control-Allow-Headers': 'Content-Type',
}

const requestOptions = {                                                                                                                                                                                 
  headers: new HttpHeaders(headerDict), 
};

return this.http.get(this.heroesUrl, requestOptions)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #typescript #http #attach #headers
ADD COMMENT
Topic
Name
1+2 =