Overview
Summary
Contact
Donate
Imprint
Prompt for the
MediaView
Please create a React-JS view called "MediaView" for the fields of the Media entity. The MediaView must contain the following fields: - name: AltText type: STRING - name: DurationSeconds type: INT - name: Height type: INT - name: Tweet type: Tweet - name: Type type: STRING - name: Url type: STRING - name: Width type: INT The data source for the [Tweet] select control should be loaded from the relative URL: "/TweetService/tweet" (HTTP-GET) An existing Media entity should be loaded from the relative URL: "/ListService/media/{id}" (HTTP-GET) If a new Media entity has been created, the new entity should be posted to the relative URL: "/ListService/media" (HTTP-POST) If an existing Media entity has been updated, the modified entity should be sent to the relative URL: "/ListService/media/{id}" (HTTP-PUT) If an existing Media entity has to be deleted, the following relative URL should be called: "/ListService/media/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint