開発者向け機能:サーバスクリプト:siteSettings
## 概要
[サーバスクリプト](/ja/manual/table-management-server-script)で「サイト設定」の読み取り、変更を行うためのオブジェクトです。
## 制限事項
1. 「サイト設定の読み取り時」の条件のみ使用できます。
## プロパティ
|No|プロパティ名|変更|説明|
|:--|:----------|:-------:|:---------------------------|
|1|DefaultViewId |○|[既定のビュー](/ja/manual/table-management-default-view)のID|
|2|[Sections](/manual/server-script-site-settings-sections)|○|Sectionオブジェクトの配列|
## メソッド
|No|Name|Description|
|:----|:----|:----|
|1|[SiteId](/manual/server-script-site-settings-site-id)|[サイト](/ja/manual/site)の[タイトル](/ja/manual/tenant-logo)をキーに「サイトID」を取得|
## 使用例①
以下の例では、ビューのIDが1のものを既定のビューとして設定します。
##### JavaScript
```
siteSettings.DefaultViewId = 1;
```
## 使用例②
以下の例では、セクションの情報を取得してセクションのIDとラベルテキストをログに出力します。
##### JavaScript
```
let sections = siteSettings.Sections;
for (let section of sections) {
context.Log(`${section.Id} ${section.LabelText}`);
}
```
## 使用例③
以下の例では、サイト名が 部署マスタ のサイトIDを取得してログに出力します。
##### JavaScript
```
let siteId = siteSettings.SiteId('部署マスタ');
context.Log(siteId);
```
## 関連情報
<div id="ManualList"><ul><li><a href="/ja/manual/site">サイト機能</a><span>2024/10/22 up</span></li></ul></article>
<ul><li><a href="/ja/manual/table-management-default-view">テーブルの管理:一覧画面:既定のビュー</a><span>2024/04/09 up</span></li></ul></article>
<ul><li><a href="/ja/manual/table-management-server-script">テーブルの管理:サーバスクリプト</a><span>2024/10/08 up</span></li></ul></article>
<ul><li><a href="/ja/manual/tenant-logo">テナント管理機能:ロゴ、タイトル、ロゴ画像</a><span>2024/04/11 up</span></li></ul></article>
<ul><li><a href="/ja/manual/server-script">開発者向け機能:サーバスクリプト</a><span>2023/06/01 up</span></li>
<li><a href="/ja/manual/server-script-site-settings-sections">開発者向け機能:サーバスクリプト:siteSettings.Sections</a><span>2024/06/05 up</span></li>
<li><a href="/ja/manual/server-script-site-settings-site-id">開発者向け機能:サーバスクリプト:siteSettings.SiteId</a><span>2023/06/21 up</span></li></ul></article>
<ul><li><a href="/ja/manual/faq-server-script-log">FAQ:サーバスクリプトのエラーログを出力したい</a><span>2024/04/29 up</span></li></ul></article></div><input id="SearchTextHidden" type="hidden" value="" />