Overview
Summary
Contact
Donate
Imprint
Prompt for the
CharacterView
Please create a React-JS view called "CharacterView" for the fields of the Character entity. The CharacterView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing Character entity should be loaded from the relative URL: "/CharacterService/character/{id}" (HTTP-GET) If a new Character entity has been created, the new entity should be posted to the relative URL: "/CharacterService/character" (HTTP-POST) If an existing Character entity has been updated, the modified entity should be sent to the relative URL: "/CharacterService/character/{id}" (HTTP-PUT) If an existing Character entity has to be deleted, the following relative URL should be called: "/CharacterService/character/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TitleCast columns: - column: CreditOrder - column: IsGuestAppearance - column: Person - column: RoleDescription - column: Character - column: Title - column: IsUncredited The table should have the title "TitleCasts" und the data must be loaded from the server with the following relative URL: "/PersonService/titlecast/character/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint