Open web-dave opened 2 years ago
(Pro Nav-Link eine)
ng g pipe swapi/swapi-link
src
Angular Generator
Pipe
swapi-link
src/app/swapi
SwapiModule
declarations
"https://swapi.dev/api/films/6/"
"6"
Next
Generiere eine Angular Pipe.
(Pro Nav-Link eine)
Lokal
Online
src
Ordner in der Projekt Section.Angular Generator
Pipe
auswählenswapi-link
im Promt eingeben und bestätigensrc/app/swapi
verschiebenSwapiModule
indeclarations
array eintragenImplementiere eine Pipe
"https://swapi.dev/api/films/6/"
)"6"
)Hint
Pipe
## SwapiLinkPipe ```ts transform(url: string): string { return url.split('/').slice(0, -1).pop() as string; } ```