0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

kintoneカスタマイズ サブドメインを取得する

Posted at

環境

  • kintone
  • javascript

対象

  • kintoneカスタマイズ(プラグイン開発)でサブドメインを取得したい人

kintoneURLの種類

kintoneのURLには以下の種類があります。

全てのパターンで取得できる様にします。

対応

今回は以下のコードでサブドメインを取得します。

subDomein.js
    //kintone環境URL・サブドメイン
    const url = kintone.api
        .url('/k/v1/records.json', false);
    const subDomein = url
        .match(/^https:\/\/([^.]+)/)[1];  // httpsプロトコルの後からドットまでの文字列を抽出

コード説明

  • 正規表現^https://([^.]+)を使用して、URLの先頭から最初のドットまでの文字列を抽出
  • match()メソッドの結果から、キャプチャグループの値(インデックス1)を取得
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?