---
sourceDocument: オーストラリア API リファレンス
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ja-JP/api-reference

 Release :

    - australia

ft:locale :

    - ja-JP

ft:publication_title :

    - オーストラリア API リファレンス

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# cabrillo.navigation: クライアント

# cabrillo.navigation: クライアント {#ariaid-title1}

* リリースバージョン: Australia
* 
* 更新日 2026年03月12日
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 所要時間：2分

Cabrillo JS 前方および後方ナビゲーションの機能。

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

後方ナビゲーションを有効にします。
{#CN-goBack__table_rtj_5dn_wbb__entry__3}

| 名前 | タイプ | 説明 |
|-|-|-|
| なし |   |   |
[表 : 1. パラメーター]

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

| タイプ | 説明 |
|-|-|
| ブーリアン | Cabrillo JS逆方向に移動する場合は true を返し、それ以外の場合は false を返します。 |
[表 : 2. 返される内容]

{#CN-goBack__table_stj_5dn_wbb}  

    cabrillo.navigation.goBack();

## cabrillo.navigation - goto( 文字列 url, Cabrillo.NavigationRequest 要求) {#ariaid-title3}

前方ナビゲーションを有効にします。
リストまたはレコードのナビゲーションには、url パラメーターではなく要求パラメーターを使用します。
{#CN-goto_S_CNR__table_qlj_q2n_wbb__entry__3}

| 名前 | タイプ | 説明 |
|-|-|-|
| URL | 文字列 | 移動先の URL。これはカスタム URL ナビゲーションに使用する必要があります。オプション。 |
| 要求 | Cabrillo.NavigationRequest | 移動先のリストまたはレコードについて説明します。オプション。 |
[表 : 3. パラメーター]

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

| タイプ | 説明 |
|-|-|
| ブーリアン | 移動する場合は true Cabrillo JS 返し、それ以外の場合は false を返します。 |
[表 : 4. 返される内容]

{#CN-goto_S_CNR__table_rlj_q2n_wbb}  
URL に移動します。

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

リストに移動します。リストナビゲーションでは、request パラメーターは url パラメーターよりも優先されます。

    // 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);

レコードに移動します。レコードナビゲーションでは、要求パラメーターが url パラメーターよりも優先されます。

    // 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);

新しいレコードに移動します。

    // 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);


