📅  最后修改于: 2022-03-11 14:48:26.878000             🧑  作者: Mango
//RequestOptions is deprecated if you use @angular/common/http
//try this solution instead:
import { HttpHeaders } from '@angular/common/http';
...
const httpOptions = {
headers: new HttpHeaders({
'Content-Type': 'application/json',
'Authorization': environment.key
})
};
...