Overview
Summary
Contact
Donate
Imprint
Prompt for the
AlbumView
Please create a React-JS view called "AlbumView" for the fields of the Album entity. The AlbumView must contain the following fields: - name: Label type: Label - name: ReleaseDate type: DATE - name: Title type: STRING The data source for the [Label] select control should be loaded from the relative URL: "/CountryService/label" (HTTP-GET) An existing Album entity should be loaded from the relative URL: "/TrackService/album/{id}" (HTTP-GET) If a new Album entity has been created, the new entity should be posted to the relative URL: "/TrackService/album" (HTTP-POST) If an existing Album entity has been updated, the modified entity should be sent to the relative URL: "/TrackService/album/{id}" (HTTP-PUT) If an existing Album entity has to be deleted, the following relative URL should be called: "/TrackService/album/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Track columns: - column: Title - column: IsPodcastMusic - column: IsExplicit - column: DurationSeconds - column: Album The table should have the title "Tracks" und the data must be loaded from the server with the following relative URL: "/TrackService/track/album/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint