Search⌘ K

Step 5: Implement the Retrieve/List_all Use Case

Explore how to implement the Retrieve/List All use case in a front-end app built with plain JavaScript. Learn to use HTML tables and DOM methods like insertRow and insertCell to display all model objects effectively, managing data retrieval and user interface setup for a CRUD application.

We'll cover the following...

Retrieve/list_all

The user interface for the CRUD use case Retrieve” consists of an HTML table for displaying the data of all model objects.

For our example application, this page is called retrieveAndListAllBooks.html. It’s located in the main folder MinimalApp, and contains the following code in its head element: ...