对此问题感到困惑。我正在尝试通过Angular 2应用程序访问AWS上的Lambda函数。在AWS中启用了跨源。在Chrome浏览器的“网络”标签中,我收到200条回复。
这里是Angular代码
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
getAWS(): Observable<any> {
return this.http.get('https://9rw0xrw730.execute-api.us-east-1.amazonaws.com/default/...', {
headers: {
'x-api-key': 'myapi key'
}
}
);
}