Is there any functionality of AJAX in vflow2?

AJAX stands for Asynchronous JavaScript and XML. It’s a development technique that allows web pages to be updated without reloading the entire page.

Provide an example..

5 Likes

The whole vFlow works on the principle of AJAX. vFlow is a component built upon Angular which is a single page application(SPA). The only way any application can become single page is by doing AJAX calls to the backend or using webservices which is modern web take on the push systems.

Therefore, every call to the vConnect service from vFlow app is an example of AJAX call.

1 Like