我正在将我的JWT令牌从本地存储发送到Authourization标头中的API。一切都在Postman上运行,并且用户已添加到数据库中。但是,在我的离子应用程序中,我不断收到未定义索引的错误。
addPatient
token = this.storage.get('token');
addPatient(FirstName, LastName, InjuryDesc, DOB) {
const headers = new HttpHeaders();
headers.set('Content-Type', 'application/json');
headers.set('Authorization', 'Bearer + this.token');
return this.http.post<any>(apiUrl + 'addPatient.php',
{FirstName, LastName, InjuryDesc, DOB},
{headers});
}
php API
$headers = getallheaders();
$jwt = $headers['Authorization'];
$response['jwt']= $jwt;