Ola, utilizando o annotation @Input(), existe como criar um algo assim
export class GaleriaComponent{
@Input() openingCrawl
}
Estou utilizando uma serviço para pegar informações sobre filmes, sendo que ele retorna algumas dados ( codigo abaixo ) assim "opening_crawl" e eu não modifico o json que é retornado desse endpoit ex: https://swapi.co/api/films/.
É possível criar um Annotation camelCase ?
{
"title": "A New Hope",
"episode_id": 4,
"opening_crawl": "It is a period of civil war.\r\nRebel spaceships,",
}
<item *ngFor="let filme of filmes"
openingCrawl={{filme.openingCrawl}}>
</item>