📅  最后修改于: 2022-03-11 15:04:02.078000             🧑  作者: Mango
import { HttpHeaders } from '@angular/common/http';
const httpOptions = {
headers: new HttpHeaders({
'Content-Type': 'application/json',
'Authorization': 'Basic ' + btoa('username:password')
})
};