Overview
Summary
Contact
Donate
Imprint
Prompt for the
FeedbackView
Please create a React-JS view called "FeedbackView" for the fields of the Feedback entity. The FeedbackView must contain the following fields: - name: Comment type: STRING - name: FeedbackDate type: DATE - name: FromUserAccount type: UserAccount - name: OrderItem type: OrderItem - name: Rating type: LONG - name: ToUserAccount type: UserAccount The data source for the [ToUserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [OrderItem] select control should be loaded from the relative URL: "/UserAccountService/orderitem" (HTTP-GET) The data source for the [FromUserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing Feedback entity should be loaded from the relative URL: "/UserAccountService/feedback/{id}" (HTTP-GET) If a new Feedback entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/feedback" (HTTP-POST) If an existing Feedback entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/feedback/{id}" (HTTP-PUT) If an existing Feedback entity has to be deleted, the following relative URL should be called: "/UserAccountService/feedback/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint