What is a page
This document explains the page.
What is the page?
The page is a value representing the information on the current screen.
The page is used to send specific event or to show specific support bot.
Why use the page instead of the URL?
URL has two significant drawbacks.
- The URL in SPA(Single Page Application) is not changed.
- The mobile Application does not have the URL.
By using the page instead of the URL, you can properly use the current screen state information.
What information does the page have by default?
It depends on the platforms.
- Web: canonical URL
- iOS: the name of the ViewController class
- Android: the name of the Activity class
How to change the page value?
Use setPage
and resetPage
.
See the following links for more details.
Updated 5 months ago