Overview
Summary
Contact
Donate
Imprint
Prompt for the
TrackArtistView
Please create a React-JS view called "TrackArtistView" for the fields of the TrackArtist entity. The TrackArtistView must contain the following fields: - name: Artist type: Artist - name: Role type: STRING - name: SortOrder type: LONG - name: Track type: Track The data source for the [Artist] select control should be loaded from the relative URL: "/TrackService/artist" (HTTP-GET) The data source for the [Track] select control should be loaded from the relative URL: "/TrackService/track" (HTTP-GET) An existing TrackArtist entity should be loaded from the relative URL: "/TrackService/trackartist/{id}" (HTTP-GET) If a new TrackArtist entity has been created, the new entity should be posted to the relative URL: "/TrackService/trackartist" (HTTP-POST) If an existing TrackArtist entity has been updated, the modified entity should be sent to the relative URL: "/TrackService/trackartist/{id}" (HTTP-PUT) If an existing TrackArtist entity has to be deleted, the following relative URL should be called: "/TrackService/trackartist/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint