Reflex Logo

Intro

Gallery

Hosting

Components

New

Learn

Components

API Reference

Onboarding

Utility-methods

/

Router-attributes

The state object has several methods and attributes that return information about the current page, session, or state.

The self.router attribute has several sub-attributes that provide various information:

  • router.page: data about the current page and route
    • host: The hostname and port serving the current page (frontend).
    • path: The path of the current page (for dynamic pages, this will contain the slug)
    • raw_path: The path of the page displayed in the browser (including params and dynamic values)
    • full_path: path with host prefixed
    • full_raw_path: raw_path with host prefixed
    • params: Dictionary of query params associated with the request
  • router.session: data about the current session
    • client_token: UUID associated with the current tab's token. Each tab has a unique token.
    • session_id: The ID associated with the client's websocket connection. Each tab has a unique session ID.
    • client_ip: The IP address of the client. Many users may share the same IP address.
  • router.headers: a selection of common headers associated with the websocket connection. These values can only change when the websocket is re-established (for example, during page refresh). All other headers are available in the dictionary self.router_data.headers.
    • host: The hostname and port serving the websocket (backend).
NameValue

router.page.host

router.page.path

router.page.raw_path

router.page.full_path

router.page.full_raw_path

router.page.params

{}

router.session.client_token

router.session.session_id

router.session.client_ip

router.headers.host

router.headers.user_agent

router.headers.to_string()

{"host":"","origin":"","upgrade":"","connection":"","pragma":"","cache_control":"","user_agent":"","sec_websocket_version":"","sec_websocket_key":"","sec_websocket_extensions":"","accept_encoding":"","accept_language":""}
class RouterState(rx.State):
    pass


def router_values():
    return rx.chakra.table(
        headers=["Name", "Value"],
        rows=[
            [
                rx.text("router.page.host"),
                rx.code(RouterState.router.page.host),
            ],
            [
                rx.text("router.page.path"),
                rx.code(RouterState.router.page.path),
            ],
            [
                rx.text("router.page.raw_path"),
                rx.code(RouterState.router.page.raw_path),
            ],
            [
                rx.text("router.page.full_path"),
                rx.code(RouterState.router.page.full_path),
            ],
            [
                rx.text("router.page.full_raw_path"),
                rx.code(
                    RouterState.router.page.full_raw_path
                ),
            ],
            [
                rx.text("router.page.params"),
                rx.code(
                    RouterState.router.page.params.to_string()
                ),
            ],
            [
                rx.text("router.session.client_token"),
                rx.code(
                    RouterState.router.session.client_token
                ),
            ],
            [
                rx.text("router.session.session_id"),
                rx.code(
                    RouterState.router.session.session_id
                ),
            ],
            [
                rx.text("router.session.client_ip"),
                rx.code(
                    RouterState.router.session.client_ip
                ),
            ],
            [
                rx.text("router.headers.host"),
                rx.code(RouterState.router.headers.host),
            ],
            [
                rx.text("router.headers.user_agent"),
                rx.code(
                    RouterState.router.headers.user_agent
                ),
            ],
            [
                rx.text("router.headers.to_string()"),
                rx.code(
                    RouterState.router.headers.to_string()
                ),
            ],
        ],
        overflow_x="auto",
    )
← Authentication OverviewOther Methods →

Did you find this useful?

HomeGalleryChangelogIntroductionHosting