Hi there, I'm fairly new to Angular and trying to work with the Wikipedia API. However, I seem to be having trouble getting 4 titles from the API. Here's an example URL for one of the titles:
https://en.wikipedia.org/w/api.php?action=query&prop=pageprops&format=json&titles=Wilson_Lumpkin
Data Model
IwikiItem.ts:
export interface IWikiItem {
batchcomplete?: string;
query?: Query;
}
// Interfaces definition...
Component
// Component code snippet...
Service
// Service code snippet...
I'm encountering some errors while working on this. Could someone please help me out? The error messages can be found here: error msg and error.