Overview
Summary
Contact
Donate
Imprint
Prompt for the
AuthorView
Please create a React-JS view called "AuthorView" for the fields of the Author entity. The AuthorView must contain the following fields: - name: AuthorOrder type: LONG - name: Person type: Person - name: Publication type: Publication The data source for the [Publication] select control should be loaded from the relative URL: "/PublicationService/publication" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Author entity should be loaded from the relative URL: "/PersonService/author/{id}" (HTTP-GET) If a new Author entity has been created, the new entity should be posted to the relative URL: "/PersonService/author" (HTTP-POST) If an existing Author entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/author/{id}" (HTTP-PUT) If an existing Author entity has to be deleted, the following relative URL should be called: "/PersonService/author/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint