From bd4888c9084c9633e99cd0df2065297c8b1a2004 Mon Sep 17 00:00:00 2001 From: ntrogh Date: Sun, 10 Jan 2021 23:36:12 +0100 Subject: [PATCH] Use generic language for input methods --- 7-bank-project/3-data/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-bank-project/3-data/README.md b/7-bank-project/3-data/README.md index 6b8f1ea0..558a6902 100644 --- a/7-bank-project/3-data/README.md +++ b/7-bank-project/3-data/README.md @@ -25,7 +25,7 @@ curl http://localhost:5000/api ## AJAX and data fetching -Traditional web sites update the content displayed when the user click on a link or submit data using a form, by reloading the full HTML page. Every time new data needs to be loaded, the web server returns a brand new HTML page that needs to be processed by the browser, interrupting the current user action and limiting interactions during the reload. This workflow is also called a *Multi-Page Application* or *MPA*. +Traditional web sites update the content displayed when the user selects a link or submits data using a form, by reloading the full HTML page. Every time new data needs to be loaded, the web server returns a brand new HTML page that needs to be processed by the browser, interrupting the current user action and limiting interactions during the reload. This workflow is also called a *Multi-Page Application* or *MPA*. ![Update workflow in a multi-page application](./images/mpa.png)