elemental-lowcode

Elemental lowcode development platform.

View the Project on GitHub PhilipSkinner/elemental-lowcode

Back to Controllers

Navigation Service

The navigation service allows you to redirect users to other routes/urls within your website controllers. This service provides the following methods:

These methods are covered in more detail below.

Parameters:

Redirects the users client to the given URL.

This can be called from your controllers like so:

module.exports = {
	events : {
		load : (event) => {
			this.navigationService.navigateTo("/my/path");
		}
	}
};