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