Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
HomeWorkView
Please create a React-JS view called "HomeWorkView" for the fields of the HomeWork entity. The HomeWorkView must contain the following fields: - name: DeadLine type: DATE - name: Description type: STRING - name: WorkDate type: DATE - name: Done type: BOOL - name: Schoolsubject type: SchoolSubject - name: SchoolClass type: SchoolClass - name: Grade type: INT - name: Student type: Student - name: Subject type: STRING The data source for the [SchoolClass] select control should be loaded from the relative URL: "/SchoolYearService/schoolclass" (HTTP-GET) The data source for the [Schoolsubject] select control should be loaded from the relative URL: "/SchoolSubjectService/schoolsubject" (HTTP-GET) The data source for the [Student] select control should be loaded from the relative URL: "/StudentService/student" (HTTP-GET) An existing HomeWork entity should be loaded from the relative URL: "/SchoolSubjectService/homework/{id}" (HTTP-GET) If a new HomeWork entity has been created, the new entity should be posted to the relative URL: "/SchoolSubjectService/homework" (HTTP-POST) If an existing HomeWork entity has been updated, the modified entity should be sent to the relative URL: "/SchoolSubjectService/homework/{id}" (HTTP-PUT) If an existing HomeWork entity has to be deleted, the following relative URL should be called: "/SchoolSubjectService/homework/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum