У меня есть код:
const parameters = 'Account/GetDoctorDetails?userId=' + 63;
this.http.get(`${webserviceUrlLocalHost}` + parameters)
.subscribe(response => {
console.log('response.json()');
console.log(response.json());
Я хотел бы вставить в этот вызов токен в вызове GET webapi, поэтому я изменил свой код на:
const headers = new Headers({ 'Authorization': `Bearer ` + token });
const options2 = new RequestOptions({ headers: headers });
return this.http.get('http://localhost:55803/Account/GetDoctorDetails?userId=63', options2)
.subscribe( response => console.log(response.json())); */
Но функция никогда не вызывается; есть идеи, почему это не работает?