Overview
Summary
Contact
Donate
Imprint
Prompt for the
PostTopicView
Please create a React-JS view called "PostTopicView" for the fields of the PostTopic entity. The PostTopicView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing PostTopic entity should be loaded from the relative URL: "/PostTopicService/posttopic/{id}" (HTTP-GET) If a new PostTopic entity has been created, the new entity should be posted to the relative URL: "/PostTopicService/posttopic" (HTTP-POST) If an existing PostTopic entity has been updated, the modified entity should be sent to the relative URL: "/PostTopicService/posttopic/{id}" (HTTP-PUT) If an existing PostTopic entity has to be deleted, the following relative URL should be called: "/PostTopicService/posttopic/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PostTopicAssignment columns: - column: PostTopic - column: Post The table should have the title "PostTopicAssignments" und the data must be loaded from the server with the following relative URL: "/PostTopicService/posttopicassignment/posttopic/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint