---
sourceDocument: Xanadu-API-Referenz
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/xanadu/api-reference

 Release :

    - xanadu

ft:locale :

    - de-DE

ft:publication_title :

    - Xanadu-API-Referenz

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# cabrillo.navigation -- Client

# cabrillo.navigation -- Client {#ariaid-title1}

* Freigeben Version: Xanadu
* 
* Aktualisiert 1. August 2024
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 Minute Lesedauer

Cabrillo JS Funktionen für die Vorwärts- und Rückwärtsnavigation.

## cabrillo.navigation -- goBack() {#ariaid-title2}

Aktiviert die Rückwärtsnavigation.
{#CN-goBack__table_rtj_5dn_wbb__entry__3}

| Name | Typ | Beschreibung |
|-|-|-|
| Keine |   |   |
[Tabelle : 1. Parameter]

{#CN-goBack__table_rtj_5dn_wbb} {#CN-goBack__table_stj_5dn_wbb__entry__2}

| Typ | Beschreibung |
|-|-|
| Boolean | Gibt „true" zurück, wenn Cabrillo JS rückwärts navigiert; ansonsten „false". |
[Tabelle : 2. Ergebnisse]

{#CN-goBack__table_stj_5dn_wbb}  

    cabrillo.navigation.goBack();

## cabrillo.navigation -- goto(String url, Cabrillo.NavigationRequest request) {#ariaid-title3}

Aktiviert die Vorwärtsnavigation.
Verwenden Sie den Anforderungsparameter und nicht den URL-Parameter für die Listen- oder Datensatznavigation.
{#CN-goto_S_CNR__table_qlj_q2n_wbb__entry__3}

| Name | Typ | Beschreibung |
|-|-|-|
| URL | Zeichenfolge | URLs, zu denen navigiert werden soll. Diese sollten für die benutzerdefinierte URL-Navigation verwendet werden. Optional. |
| Anforderung | Cabrillo.NavigationRequest | Beschreibt die Liste oder den Datensatz, zu dem navigiert werden soll. Optional. |
[Tabelle : 3. Parameter]

{#CN-goto_S_CNR__table_qlj_q2n_wbb} {#CN-goto_S_CNR__table_rlj_q2n_wbb__entry__2}

| Typ | Beschreibung |
|-|-|
| Boolean | Gibt „true" zurück, wenn Cabrillo JS navigiert; ansonsten wird „false" zurückgegeben. |
[Tabelle : 4. Ergebnisse]

{#CN-goto_S_CNR__table_rlj_q2n_wbb}  
Zu einer URL navigieren.

    cabrillo.navigation["goto"](https://servicenow-prod.fluidtopics.net/'/$sp.do?id=my_custom_page');

Zu einer Liste navigieren. Der Anforderungsparameter wird gegenüber dem URL-Parameter für die Listennavigation bevorzugt.

    // A Cabrillo.NavigationRequest dictionary that specifies a list of active incidents.
    var request = {
        table: 'incident',
        query: 'active=true',
    };
    cabrillo.navigation["goto"](https://servicenow-prod.fluidtopics.net/null, request);

Zu einem Datensatz navigieren. Der Anforderungsparameter wird gegenüber dem URL-Parameter für die Datensatznavigation bevorzugt.

    // A Cabrillo.NavigationRequest dictionary that specifies an incident record.
    var request = {
        table: 'incident',
        sysId: 'a9e30c7dc61122760116894de7bcc7bd'
    };
    cabrillo.navigation["goto"](https://servicenow-prod.fluidtopics.net/null, request);

Zu einem neuen Datensatz navigieren.

    // A Cabrillo.NavigationRequest dictionary that specifies a new incident record.
    // The new record will be seeded with the encoded query.
    var request = {
        table: 'incident',
        sysId: '-1',
        query: 'short_description=This is a new incident.'
    };
    cabrillo.navigation["goto"](https://servicenow-prod.fluidtopics.net/null, request);


