Overview
Summary
Contact
Donate
Imprint
Prompt for the
HashtagView
Please create a React-JS view called "HashtagView" for the fields of the Hashtag entity. The HashtagView must contain the following fields: - name: CreatedAt type: STRING - name: Description type: STRING - name: Tag type: STRING An existing Hashtag entity should be loaded from the relative URL: "/HashtagService/hashtag/{id}" (HTTP-GET) If a new Hashtag entity has been created, the new entity should be posted to the relative URL: "/HashtagService/hashtag" (HTTP-POST) If an existing Hashtag entity has been updated, the modified entity should be sent to the relative URL: "/HashtagService/hashtag/{id}" (HTTP-PUT) If an existing Hashtag entity has to be deleted, the following relative URL should be called: "/HashtagService/hashtag/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TweetHashtag columns: - column: Tweet - column: Hashtag The table should have the title "TweetHashtags" und the data must be loaded from the server with the following relative URL: "/HashtagService/tweethashtag/hashtag/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint