Я использую приложение angular 8 с чванством для вызовов API. И у меня есть этот сервис:
@Injectable({
providedIn: 'root'
})
export class ObjectiveService {
constructor(private http: HttpClient, private challengeService: ChallengeService) {}
getChallenges(patientUUID: string): Observable<ChallengeDTO[]> {
return this.challengeService.getActive(patientUUID);
}
}
И вызов API swagger выглядит следующим образом:
public getActive(participantId: string, observe?: 'body', reportProgress?: boolean): Observable<Array<ChallengeDTO>>;
public getActive(participantId: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<ChallengeDTO>>>;
public getActive(participantId: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<ChallengeDTO>>>;
public getActive(participantId: string, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {
if (participantId === null || participantId === undefined) {
throw new Error('Required parameter participantId was null or undefined when calling getActive.');
}
let headers = this.defaultHeaders;
// authentication (Bearer) required
if (this.configuration.accessToken) {
const accessToken = typeof this.configuration.accessToken === 'function'
? this.configuration.accessToken()
: this.configuration.accessToken;
headers = headers.set('Authorization', 'Bearer ' + accessToken);
}
// to determine the Accept header
const httpHeaderAccepts: string[] = [
'text/plain',
'application/json',
'text/json'
];
const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected !== undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes: string[] = [
];
return this.httpClient.get<Array<ChallengeDTO>>(`${this.configuration.basePath}/api/patient/${encodeURIComponent(String(participantId))}/Challenge`,
{
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
}
);
}
Так что я передаю id с методом. Но я все еще получаю эту ошибку:
core.js:7376 ERROR Error: Uncaught (in promise): Error: Required parameter participantId was null or undefined when calling getActive.
Error: Required parameter participantId was null or undefined when calling getActive.
at ChallengeService.push../src/app/generated/api/challenge.service.ts.ChallengeService.getActive (challenge.service.ts:76)
Но если я жестко закодировал идентификатор участника, например, так:
getChallenges(patientUUID: string): Observable<ChallengeDTO[]> {
return this.challengeService.getActive('0d584905-fc20-4723-870a-0f0214419507');
}
Тогда это работает.
Так что я должен изменить?
Спасибо